Skip to content

Update README Pinned Repos #56

Update README Pinned Repos

Update README Pinned Repos #56

Workflow file for this run

name: Update README Pinned Repos
on:
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
permissions:
contents: write
jobs:
update-pinned-repos:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update pinned repos
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: bash scripts/update-pinned-repos.sh
- name: Commit and push if changed
run: |
git diff --quiet && exit 0
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add profile/README.md
git commit -m "docs: update pinned repos in profile README"
git push