Update profile #4213
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: | |
workflow_dispatch: | |
push: | |
schedule: | |
- cron: '0 * * * *' | |
defaults: | |
run: | |
shell: pwsh | |
permissions: | |
contents: read | |
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.APP_ID }} | |
PrivateKey: ${{ secrets.APP_PRIVATE_KEY }} | |
Verbose: true | |
Debug: true | |
Script: .\scripts\UpdateReadme.ps1 |