From 0504fc42ffb9bc252b6cf3b0962dadce8813ddd1 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Tue, 30 Dec 2025 20:21:23 -0800 Subject: [PATCH] Do not print 'This run croaked' if the agent only replies in a PR review comment --- entry | 1 + mcp/comment.ts | 3 +++ 2 files changed, 4 insertions(+) diff --git a/entry b/entry index 1a0bd0d..c95b967 100755 --- a/entry +++ b/entry @@ -98726,6 +98726,7 @@ function ReplyToReviewCommentTool(ctx) { comment_id, body: bodyWithFooter }); + progressCommentWasUpdated = true; return { success: true, commentId: result.data.id, diff --git a/mcp/comment.ts b/mcp/comment.ts index 8ec2679..e16a947 100644 --- a/mcp/comment.ts +++ b/mcp/comment.ts @@ -473,6 +473,9 @@ export function ReplyToReviewCommentTool(ctx: ToolContext) { body: bodyWithFooter, }); + // mark progress as updated so ensureProgressCommentUpdated doesn't think the run failed + progressCommentWasUpdated = true; + return { success: true, commentId: result.data.id,