Update Profile #926
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Profile | |
on: | |
push: | |
schedule: | |
- cron: "0 0 * * *" # Every day at 00:00 | |
jobs: | |
markscribe: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: muesli/readme-scribe@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
template: "templates/profile.tpl" | |
writeTo: "profile/README.md" | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
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]> |