summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.claude/workflows/pr-babysit.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/.claude/workflows/pr-babysit.js b/.claude/workflows/pr-babysit.js
index b00137af4..014a6e0e9 100644
--- a/.claude/workflows/pr-babysit.js
+++ b/.claude/workflows/pr-babysit.js
@@ -156,8 +156,7 @@ const fixAndVerify = async (work) => {
const commitAndPush = async (cycle, what) => {
const push = await agent(
`${IN_CHECKOUT}On the PR branch: commit ALL working-tree changes as ONE commit (imperative message summarizing the cycle-${cycle} ${what} fixes for PR #${args.pr}, repo commit conventions), ` +
- "then push to the PR's remote branch. After a successful push, post a PR comment whose body is exactly '@codex review' (gh pr comment) - Copilot re-reviews pushes automatically, Codex only when mentioned. " +
- 'pass=true only if commit AND push succeeded; detail = pushed SHA.',
+ "then push to the PR's remote branch. pass=true only if commit AND push succeeded; detail = pushed SHA.",
{ label: `push#${cycle}-${what}`, phase: 'Push', model: 'sonnet', schema: OP },
)
return push && push.pass ? push : null