Update OAuth Resources #1
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 OAuth Resources | |
| on: | |
| schedule: | |
| - cron: "0 0 1 * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| update-oauth-resources: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: personal | |
| - name: Install ripgrep | |
| run: sudo apt-get install -y ripgrep | |
| - name: Run update script | |
| run: bash scripts/update_oauth_resources.sh | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: "chore: update oauth resources [skip ci]" | |
| file_pattern: src/oauth_resources.rs |