run main.py #54
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: run main.py | |
on: | |
schedule: | |
- cron: '0 5 * * 0' # run at 0500 UTC,equivalent to 0800 GMT(local time) every sunday | |
workflow_dispatch: | |
env: | |
APP_EMAIL: ${{ secrets.APP_EMAIL }} | |
API_KEY: ${{ secrets.API_KEY }} | |
APP_PASS: ${{ secrets.APP_PASS }} | |
PERSONAL_EMAIL: ${{ secrets.PERSONAL_EMAIL }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v2 | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: install python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: execute py script | |
run: python app.py | |
- name: commit files | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "github-actions[bot]" | |
git add -A | |
git diff-index --quiet HEAD || (git commit -a -m "update event log" --allow-empty) | |
- name: push changes | |
uses: ad-m/github-push-action@v0.6.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |