Rotate Retrogrades #28035
This file contains hidden or 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: rotate-retrogrades | |
| run-name: Rotate Retrogrades | |
| on: | |
| schedule: | |
| - cron: '5 * * * *' | |
| jobs: | |
| check-bats-version: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run script | |
| run: python ./.github/workflows/rotate.py | |
| - name: Commit report | |
| run: | | |
| git config --global user.name "Your Name" | |
| git config --global user.email "your-username@users.noreply.github.com" | |
| git add . | |
| git commit -m "Automated report" | |
| git push |