Skip to content

Update README

Update README #4375

Workflow file for this run

name: Update README
on:
workflow_dispatch: {}
schedule:
- cron: "0 * * * *"
push:
branches:
- master
jobs:
update-readme:
name: Re-generate README
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.MACHINE_USER_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn
- run: yarn compile
- run: yarn generate:readme
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: re-generate README"
file_pattern: README.md