Implement Claude PR BugScan workflow (Draft→Ready + push re-scan) #3
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: | ||
| review: | ||
| if: ${{ github.event.pull_request.draft == false }} | ||
| uses: safurrier/python-collab-template/.github/workflows/claude_pr_agent.yml@v1 | ||
|
Check failure on line 14 in .github/workflows/ai_pr_review.yml
|
||
| with: | ||
| skill: "codex-code-review" | ||
| secrets: | ||
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | ||
| # Optional: run a local skill from the target repo instead: | ||
| # with: | ||
| # skill: ".claude/skills/my-custom-review" | ||
| # Optional: use a raw prompt instead of a skill file: | ||
| # with: | ||
| # prompt: | | ||
| # Review this diff for security issues only. | ||