Steam GetAppInfo #143682
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: Steam GetAppInfo | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '*/5 * * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
pip3 install -r requirements.txt | |
- name: Run crontab.py | |
run: | | |
python3 crontab.py | |
- name: Push to built branch | |
uses: Automattic/action-commit-to-branch@master | |
with: | |
branch: 'main' | |
commit_message: 'Update AppInfo' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |