Update README #31330
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 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| ref: main | |
| - name: Render Template | |
| uses: muesli/readme-scribe@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
| with: | |
| template: "templates/README.md.tpl" | |
| writeTo: "profile/README.md" | |
| - name: Push | |
| run: | | |
| date > generated.txt | |
| git config user.name readme-scribe 🤖 | |
| git config user.email actions@github.com | |
| git add . | |
| git commit -m "locally generated" | |
| git status | |
| git push origin main |