Daily check and update #2403
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: "Daily check and update" | |
on: | |
schedule: | |
- cron: "0 */12 * * *" | |
workflow_dispatch: | |
jobs: | |
check_and_update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout master | |
uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.10.11 | |
- name: Install requirements | |
run: | | |
pip install -r requirements.txt | |
- name: Run main.py | |
env: | |
COOKIES: ${{ secrets.COOKIES }} | |
run: | | |
python main.py -o .github/README.md | |
- name: Format with prettier | |
run: | | |
npx prettier .github/README.md --write --parser html | |
- name: Commit and push if changed | |
run: | | |
git diff | |
git config user.name "Shenhe" | |
git config user.email "shenhe@github.com" | |
git add . | |
git commit -m "Joy's Anime Game stats" | |
git push |