Skip to content

Update README ✍️ #151

Update README ✍️

Update README ✍️ #151

Workflow file for this run

name: Update README ✍️
# Run hourly
on:
push:
branches: [master]
schedule:
- cron: "0 */1 * * *"
workflow_dispatch:
jobs:
readme-scribe:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Generate README.md
uses: muesli/[email protected]
with:
template: "templates/README.md.tpl"
writeTo: "profile/README.md"
- name: Commit README.md
uses: stefanzweifel/git-auto-commit-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commit_message: "docs: update README.md"
branch: main
commit_user_name: GitHub Actions
commit_user_email: [email protected]
commit_author: GitHub Actions <[email protected]>