Update README ✨ #195
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 ✨ | |
| # Run daily at 01:00 UTC | |
| on: | |
| schedule: | |
| - cron: "0 01 * * *" | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| markscribe: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: muesli/readme-scribe@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.SCRIBE_TOKEN }} | |
| with: | |
| template: "templates/README.md.tpl" | |
| writeTo: "README.md" | |
| - uses: stefanzweifel/git-auto-commit-action@v4 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| commit_message: "docs: update generated README" | |
| branch: main | |
| commit_user_name: readme-scribe 🤖 | |
| commit_user_email: actions@github.com | |
| commit_author: readme-scribe 🤖 <actions@github.com> |