Fix typo in mkdocs-material installation step and ensure GH_TOKEN is … #1737
Workflow file for this run
This file contains hidden or 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: | |
| workflow_dispatch: | |
| push: | |
| schedule: | |
| - cron: '0 * * * *' | |
| permissions: {} | |
| jobs: | |
| update_readme: | |
| name: Update Profile README | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Update README | |
| uses: PSModule/GitHub-Script@v1 | |
| with: | |
| ClientID: ${{ secrets.SCRIBBLER_BOT_CLIENT_ID }} | |
| PrivateKey: ${{ secrets.SCRIBBLER_BOT_PRIVATE_KEY }} | |
| Script: .github/scripts/UpdateReadme.ps1 |