Update README #11507
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update README | |
| on: | |
| push: | |
| schedule: | |
| - cron: "0 */1 * * *" | |
| jobs: | |
| markscribe: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| # Value already defaults to true, but `persist-credentials` is required to push new commits to the repository. | |
| persist-credentials: true | |
| - uses: muesli/readme-scribe@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
| with: | |
| template: "templates/template.tpl" | |
| writeTo: "README.md" | |
| - uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: Update generated README | |
| branch: main | |
| commit_user_name: readme-scribe 🤖 | |
| commit_user_email: actions@github.com | |
| commit_author: readme-scribe 🤖 <actions@github.com> |