Implement Claude PR BugScan workflow (Draft→Ready + push re-scan) #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: Claude PR scan (Draft->Ready + Push) | ||
| on: | ||
| pull_request: | ||
| types: [ready_for_review, synchronize, reopened] | ||
| concurrency: | ||
| group: claude-pr-scan-${{ github.repository }}-${{ github.event.pull_request.number }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| scan: | ||
| if: ${{ github.event.pull_request.draft == false }} | ||
| uses: safurrier/python-collab-template/.github/workflows/claude_pr_review.yml@v1 | ||
|
Check failure on line 14 in .github/workflows/ai_pr_review.yml
|
||
| secrets: | ||
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | ||
| # Optional: override prompt per repo: | ||
| # with: | ||
| # prompt_override: | | ||
| # <custom prompt text> | ||