Skip to content

readme-scribe

readme-scribe #1525

Workflow file for this run

name: readme-scribe
on:
workflow_dispatch:
schedule:
- cron: '0 */12 * * *'
push:
branches:
- 'main'
paths:
- .github/workflows/readme-scribe.yml
- profile/README.md.tpl
jobs:
readme-scribe:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
uses: muesli/readme-scribe@d2f6ab32d6b9f5b59941fe782d6c7e6499a37fe4
with:
template: profile/README.md.tpl
writeTo: profile/README.md
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
-
name: Clear DDS-Derek/.github
run: |
sed -i '\|- \[DDS-Derek\/\.github\](https:\/\/github\.com\/DDS-Derek\/\.github)|d' profile/README.md
-
uses: stefanzweifel/git-auto-commit-action@ac8823709a85c7ce090849ac3e5fe24d006f6e18
with:
commit_message: 'Update generated README'
branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}