Skip to content

Periodic Update

Periodic Update #106

name: Periodic Update
on:
schedule:
# Run every second day at 1:00 UTC
- cron: '0 1 */2 * *'
workflow_dispatch:
jobs:
periodic-auto-update:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
cache: 'pip'
- run: pip install -r requirements.txt
- name: Run script that collects tokens
run: |
python3 aggregate_tokens.py && python3 generate_readme.py
- name: Commit changes
if: success()
uses: stefanzweifel/git-auto-commit-action@v5.0.0