mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-22 14:24:13 +08:00
* feat: update claude-review workflow to use progress tracking and slash command - Rename workflow from "Auto review PRs" to "PR Review with Progress Tracking" - Update trigger types to include synchronize, ready_for_review, reopened - Add pull-requests: write permission for tracking comments - Replace direct_prompt with /review-pr slash command using custom command file - Update to use claude-code-action@v1 - Switch to inline comment tool for more precise PR feedback 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * agents * refactor: standardize agent output format instructions Unified the output format instructions across all reviewer agents to follow a consistent structure: - Converted numbered sections to bold headers for better readability - Standardized "Review Structure" sections across all agents - Maintained distinct analysis areas specific to each reviewer type 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
28 lines
736 B
YAML
28 lines
736 B
YAML
name: PR Review
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, ready_for_review, reopened]
|
|
|
|
jobs:
|
|
review:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
id-token: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: PR Review with Progress Tracking
|
|
uses: anthropics/claude-code-action@v1
|
|
with:
|
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
|
|
prompt: "/review-pr REPO: ${{ github.repository }} PR_NUMBER: ${{ github.event.pull_request.number }}"
|
|
claude_args: |
|
|
--allowedTools "mcp__github_inline_comment__create_inline_comment"
|