Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/actions/claude_code_review/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,6 @@ inputs:
- Inline comments for specific issues
- A summary comment with high/medium/low priority items
- Concrete fix suggestions and quick patches where safe
timeout_minutes:
description: "Timeout in minutes for Claude review"
required: false
default: "60"
track_progress:
description: "Track progress of the review"
required: false
default: "true"

runs:
using: composite
Expand Down Expand Up @@ -78,11 +70,11 @@ runs:

- name: Run Claude Code Action
uses: anthropics/claude-code-action@v1
timeout-minutes: ${{ inputs.timeout_minutes }}
timeout-minutes: 60
with:
github_token: ${{ inputs.github_token }}
anthropic_api_key: ${{ inputs.anthropic_api_key }}
track_progress: ${{ inputs.track_progress }}
track_progress: true
prompt: |
REPO: ${{ inputs.repository }}
PR NUMBER: ${{ inputs.pr_number }}
Expand Down
Loading