.github/workflows/update-pr-review-local.yml #10
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 PR Review Skill (Local) | ||
| on: | ||
| schedule: | ||
| - cron: '0 9 * * 1' # Every Monday at 09:00 UTC | ||
| workflow_dispatch: | ||
| inputs: | ||
| lookback_days: | ||
| description: Number of days to look back for PR feedback | ||
| required: false | ||
| default: '7' | ||
| type: string | ||
| jobs: | ||
| update_pr_review: | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
| uses: warpdotdev/oz-for-oss/.github/workflows/update-pr-review.yml@main | ||
|
Check failure on line 17 in .github/workflows/update-pr-review-local.yml
|
||
| with: | ||
| lookback_days: ${{ github.event.inputs.lookback_days || '7' }} | ||
| secrets: | ||
| OZ_MGMT_GHA_APP_ID: ${{ secrets.OZ_MGMT_GHA_APP_ID }} | ||
| OZ_MGMT_GHA_PRIVATE_KEY: ${{ secrets.OZ_MGMT_GHA_PRIVATE_KEY }} | ||
| OSS_WARP_API_KEY: ${{ secrets.OSS_WARP_API_KEY }} | ||