Fix branch mode prompt for /review (#4061)
Updates `/review` branch mode to review against a branch's upstream.
This commit is contained in:
@@ -1666,7 +1666,7 @@ impl ChatWidget {
|
|||||||
tx3.send(AppEvent::CodexOp(Op::Review {
|
tx3.send(AppEvent::CodexOp(Op::Review {
|
||||||
review_request: ReviewRequest {
|
review_request: ReviewRequest {
|
||||||
prompt: format!(
|
prompt: format!(
|
||||||
"Review the code changes against the base branch '{branch}'. Start by finding the merge diff between the current branch and {branch} e.g. (git merge-base HEAD {branch}), then run `git diff` against that SHA to see what changes we would merge into the {branch} branch. Provide prioritized, actionable findings."
|
"Review the code changes against the base branch '{branch}'. Start by finding the merge diff between the current branch and {branch}'s upstream e.g. (`git merge-base HEAD \"$(git rev-parse --abbrev-ref \"{branch}@{{upstream}}\")\"`), then run `git diff` against that SHA to see what changes we would merge into the {branch} branch. Provide prioritized, actionable findings."
|
||||||
),
|
),
|
||||||
user_facing_hint: format!("changes against '{branch}'"),
|
user_facing_hint: format!("changes against '{branch}'"),
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user