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,