test: validate regression flag ordering fix #4
Workflow file for this run
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
| on: | |
| pull_request_target: | |
| jobs: | |
| pr-review: | |
| if: github.repository != 'ConductorOne/github-workflows' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| - name: Checkout PR head | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Checkout workflows repo | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: ConductorOne/github-workflows | |
| path: _workflows | |
| sparse-checkout: skills | |
| - name: Install review skill | |
| run: | | |
| mkdir -p .claude/skills | |
| cp _workflows/skills/pr-review.md .claude/skills/pr-review.md | |
| rm -rf _workflows | |
| - name: Run Claude PR Review | |
| uses: anthropics/claude-code-action@v1 | |
| with: | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| use_sticky_comment: true | |
| track_progress: true | |
| include_fix_links: true | |
| claude_args: --model claude-opus-4-6 --max-turns 100 --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*)" | |
| prompt: | | |
| Use the /pr-review skill to review this PR. |