summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-08-27 01:16:44 +0700
committerhathach <[email protected]>2026-08-27 01:16:44 +0700
commit17327876f1f6213bbbeb240bcf7f384bb9aa1387 (patch)
tree192cfa6c09cf91a78d3a5da33e0833cda75ddb46
parent179e5ae9c7ac1a80b40f75d1849accb9bcec5416 (diff)
pr-babysit: drop the @codex mention - the GitHub connector auto-reviews pushesclaude/pr-babysit-split-triage
-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