fix: tag index start with 1 #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto update | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
if: github.actor != 'github_actions' | |
steps: | |
- run: echo "🎉 The job was automatically triggered by ${{ github.actor }}." | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- run: poetry install --no-interaction | |
- name: Run script | |
run: | | |
poetry run python -m script.run | |
- name: Commit changes | |
id: commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: "GitHub Actions Update" | |
add: "data/*" | |
new_branch: data_update_${{github.run_id}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: create pull request | |
if: steps.commit.outputs.committed == 'true' | |
run: gh pr create --title 'Data Update' --body 'Created by Github action' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |