mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-23 15:04:13 +08:00
41 lines
1.6 KiB
YAML
41 lines
1.6 KiB
YAML
name: Auto review PRs
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
auto-review:
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Auto review PR
|
|
uses: ./
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
prompt: |
|
|
Please review this PR using the GitHub review tools. You MUST:
|
|
1. First, use mcp__github-comment-server__get_pull_request_diff to get the PR changes
|
|
2. Then, use mcp__github-comment-server__create_pending_pull_request_review to start a review
|
|
3. Use mcp__github-comment-server__add_comment_to_pending_review to add inline comments where needed
|
|
4. Finally, use mcp__github-comment-server__submit_pending_pull_request_review with event="COMMENT" to submit the review
|
|
|
|
In your review, provide thoughtful feedback on:
|
|
- Code quality and best practices
|
|
- Potential bugs or issues
|
|
- Suggestions for improvements
|
|
- Overall architecture and design decisions
|
|
- Documentation consistency
|
|
|
|
IMPORTANT: You must submit the review as a COMMENT, not APPROVE or REQUEST_CHANGES.
|
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
claude_args: "--allowedTools mcp__github-comment-server__create_pending_pull_request_review,mcp__github-comment-server__add_comment_to_pending_review,mcp__github-comment-server__submit_pending_pull_request_review,mcp__github-comment-server__get_pull_request_diff"
|