Skip to content

Auto Updates

Auto Updates #6625

Workflow file for this run

name: Auto Updates
on:
workflow_dispatch:
schedule:
- cron: "0 * * * *" # Every hour
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: pip install PyGithub
- name: Update README
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: python scripts/auto_updates.py