Skip to content

Update GitHub stars badges #64

Update GitHub stars badges

Update GitHub stars badges #64

Workflow file for this run

name: Update GitHub stars badges
on:
schedule:
- cron: "0 2 * * *"
workflow_dispatch:
push:
branches:
- main
paths:
- 'README.md'
permissions:
contents: write
jobs:
update-stars:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: python -m pip install requests
- name: Update stars badges
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python scripts/update_stars.py
- name: Commit and push changes
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
if git diff --quiet; then
echo "No changes to commit."
exit 0
fi
git add README.md
git commit -m "chore: update GitHub stars"
git push