Skip to content

Update README

Update README #2102

Workflow file for this run

name: Update README
on:
push:
schedule:
- cron: "0 0 * * *"
jobs:
markscribe:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v4
- run: go install github.com/muesli/markscribe@latest
- run: $(go env GOPATH)/bin/markscribe templates/README.md.tpl > README.md
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commit_message: Update generated README
branch: master
commit_user_name: readme-scribe 🤖
commit_user_email: [email protected]
commit_author: readme-scribe 🤖 <[email protected]>