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
3 changes: 2 additions & 1 deletion .github/workflows/claude-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
description: "Max conversation turns"
required: false
type: number
default: 5
default: 20

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Default max_turns mismatch

Low Severity

The reusable workflow sets max_turns default to 20, but the PR title and description (DEVEX-1523) specify bumping the default to 10. Callers that rely on the documented default may run twice as many turns as intended, increasing latency and API cost.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 142f275. Configure here.

secrets:
anthropic_api_key:
required: true
Expand All @@ -35,6 +35,7 @@ jobs:
fetch-depth: 0

- uses: anthropics/claude-code-action@v1
continue-on-error: true

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review failures hidden

Medium Severity

continue-on-error: true on the Claude review step lets the job finish successfully when the step fails, with no later step checking steps.*.outcome. Required checks or automation can treat a failed or incomplete AI review as a pass.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 142f275. Configure here.

with:
anthropic_api_key: ${{ secrets.anthropic_api_key }}
github_token: ${{ secrets.ai_reviewer_github_token }}
Expand Down