Skip to content

feat: fix readme and script update_readme.py #21

feat: fix readme and script update_readme.py

feat: fix readme and script update_readme.py #21

name: Update README
on:
push:
branches: [main]
jobs:
run-script:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Run Python script
run: python .github/scripts/update_readme.py
working-directory: ./
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add README.md
git commit -m "docs: update total count"
git push