autoupdate #2466
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: autoupdate | |
on: | |
#schedule: | |
#- cron: '03 0 * * *' | |
workflow_dispatch: | |
jobs: | |
version_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
token: ${{ secrets.BOT }} | |
- name: Check Latest Version | |
run: | | |
pip3 install in_place | |
python autoupdate.py | |
git config --global user.name 'eko5624' | |
git config --global user.email '[email protected]' | |
git commit -am "Automate" || echo "nothing updated" | |
git push |