.github/workflows/update-dedupe-local.yml #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 Dedupe Skill (Local) | ||
| on: | ||
| schedule: | ||
| - cron: '30 9 * * 1' # Every Monday at 09:30 UTC | ||
| workflow_dispatch: | ||
| inputs: | ||
| lookback_days: | ||
| description: Number of days to look back for closed-as-duplicate signals | ||
| required: false | ||
| default: '7' | ||
| type: string | ||
| jobs: | ||
| update_dedupe: | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
| uses: warpdotdev/oz-for-oss/.github/workflows/update-dedupe.yml@main | ||
|
Check failure on line 17 in .github/workflows/update-dedupe-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 }} | ||