Skip to content

Update GitHub stats #640

Update GitHub stats

Update GitHub stats #640

Workflow file for this run

name: Update GitHub stats
on:
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
concurrency:
group: stats
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install HTTPX
run: pip install --upgrade httpx
- name: Download stats
run: python download_stats.py
- name: Configure Git for GitHub Actions bot
run: |
git config --local user.name 'github-actions[bot]'
git config --local user.email 'github-actions[bot]@users.noreply.github.com'
- name: Commit if stats have changed
run: |
git add --all && git commit -m "Update stats" && git push