Skip to content

Update README

Update README #1142

Workflow file for this run

name: Update README
on:
push:
workflow_dispatch:
schedule:
- cron: "0 22 * * *"
jobs:
markscribe:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1'
- run: |
go install github.com/muesli/markscribe@master
markscribe ./templates/readme.md.tpl > README.md
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v4
env:
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
with:
commit_message: 'docs: Update generated README'
branch: dev
commit_user_name: regdocs
commit_user_email: 55305804+regdocs@users.noreply.github.com
commit_author: regdocs <55305804+regdocs@users.noreply.github.com>