-
Notifications
You must be signed in to change notification settings - Fork 1
[DEVEX-1523] Bump AI reviewer max_turns to 10 #123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ on: | |
| description: "Max conversation turns" | ||
| required: false | ||
| type: number | ||
| default: 5 | ||
| default: 20 | ||
| secrets: | ||
| anthropic_api_key: | ||
| required: true | ||
|
|
@@ -35,6 +35,7 @@ jobs: | |
| fetch-depth: 0 | ||
|
|
||
| - uses: anthropics/claude-code-action@v1 | ||
| continue-on-error: true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Review failures hiddenMedium Severity
Reviewed by Cursor Bugbot for commit 142f275. Configure here. |
||
| with: | ||
| anthropic_api_key: ${{ secrets.anthropic_api_key }} | ||
| github_token: ${{ secrets.ai_reviewer_github_token }} | ||
|
|
||


There was a problem hiding this comment.
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_turnsdefault to20, but the PR title and description (DEVEX-1523) specify bumping the default to10. Callers that rely on the documented default may run twice as many turns as intended, increasing latency and API cost.Reviewed by Cursor Bugbot for commit 142f275. Configure here.