Skip to content

Update Stargazer Hall of Fame #143

Update Stargazer Hall of Fame

Update Stargazer Hall of Fame #143

Workflow file for this run

name: Update Stargazer Hall of Fame
permissions:
contents: write
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
update-stars:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Update Stargazer List
run: |
pip install requests
python scripts/update_stars.py
- name: Commit changes
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add README.md
git commit -m "Update stargazer list" || echo "No changes"
git push