You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Overview: This PR makes three improvements to the Claude auto-reviewer GitHub Actions workflow:
Adds use_sticky_comment: true so the reviewer updates a single comment per PR rather than posting a new one on each synchronize event — cleaner UX and avoids comment spam.
Pins the model to claude-sonnet-4-6 for consistency and reproducibility.
Raises --max-turns to 25 to allow the reviewer to handle larger/more complex PRs.
Looks good overall. A few notes:
Empty PR body — the description is blank. Even a one-liner explaining why these values were chosen (e.g. the default turn limit was too low for multi-file PRs) would help future maintainers.
Model pinning — claude-sonnet-4-6 is the right ID format. Keep in mind this will need a manual update when you want to move to a newer model; it won't auto-upgrade. That's usually the desired behaviour for CI workflows, so this is fine.
--max-turns 25 — see inline comment. This is functionally fine but worth a note for cost awareness.
use_sticky_comment + cancel-in-progress: true — these two settings pair well together: rapid-fire pushes cancel the in-flight review and the sticky comment gets a single final update rather than a pile of partial comments.
No blocking issues. Changes are low-risk configuration adjustments.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.