Skip to content

Update README

Update README #184

Workflow file for this run

name: Update README
on:
schedule:
- cron: '0 0 * * *'
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install datetime requests tqdm
- name: Run script
run: |
python scripts/update_readme.py
if [ $? -eq 123 ]; then
exit 0
fi
- name: Push changes and commit
run: |
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
git commit -am "Update README.md"
git push