Merge pull request #7 from VATGER-Nav/Update-Feb #4
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: Update Serial | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'EDWW AUTO ATIS.json' | |
permissions: write-all | |
jobs: | |
update-serial: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.13.1 | |
- name: Run Serial Update Script | |
run: python .github/workflows/serial.py | |
- name: Commit and Push Changes | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git add "EDWW AUTO ATIS.json" | |
git commit -m "Update Serial" | |
git push |