mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-23 06:54:13 +08:00
- Add PR repository and number to review prompts - Note that PR branch is already checked out - Update allowed tools to use inline comments and gh CLI - Remove experimental review mode example in favor of standardized approach 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude <noreply@anthropic.com>
49 lines
1.7 KiB
YAML
49 lines
1.7 KiB
YAML
name: Claude PR Auto Review
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
auto-review:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
id-token: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Automatic PR Review
|
|
uses: anthropics/claude-code-action@v1-dev
|
|
with:
|
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
prompt: |
|
|
REPO: ${{ github.repository }}
|
|
PR NUMBER: ${{ github.event.pull_request.number }}
|
|
|
|
Please review this pull request.
|
|
|
|
Note: The PR branch is already checked out in the current working directory.
|
|
|
|
Focus on:
|
|
- Code quality and best practices
|
|
- Potential bugs or issues
|
|
- Performance considerations
|
|
- Security implications
|
|
- Test coverage
|
|
- Documentation updates if needed
|
|
- Verify that README.md and docs are updated for any new features or config changes
|
|
|
|
Provide constructive feedback with specific suggestions for improvement.
|
|
Use `gh pr comment:*` for top-level comments.
|
|
Use `mcp__github_inline_comment__create_inline_comment` to highlight specific areas of concern.
|
|
Only your GitHub comments that you post will be seen, so don't submit your review as a normal message, just as comments.
|
|
If the PR has already been reviewed, or there are no noteworthy changes, don't post anything.
|
|
|
|
claude_args: |
|
|
--allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*), Bash(gh pr diff:*), Bash(gh pr view:*)"
|