Skip to content

Update README

Update README #3732

Workflow file for this run

name: Update README
on:
push:
schedule:
- cron: "0 */6 * * *"
jobs:
markscribe:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v4
- run: |
go install github.com/caarlos0/markscribe@tmp
markscribe -write ./profile/README.md templates/profile.tpl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- 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: [email protected]
commit_author: readme-scribe 🤖 <[email protected]>