Fix branch mode prompt for /review (#4061)

Updates `/review` branch mode to review against a branch's upstream.
This commit is contained in:
dedrisian-oai
2025-09-22 12:34:08 -07:00
committed by GitHub
parent be366a31ab
commit 8bc73a2bfd

View File

@@ -1666,7 +1666,7 @@ impl ChatWidget {
tx3.send(AppEvent::CodexOp(Op::Review {
review_request: ReviewRequest {
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}'"),
},