Do not print 'This run croaked' if the agent only replies in a PR review comment

This commit is contained in:
Colin McDonnell
2025-12-30 20:21:23 -08:00
parent ad1f51d704
commit 0504fc42ff
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -98726,6 +98726,7 @@ function ReplyToReviewCommentTool(ctx) {
comment_id,
body: bodyWithFooter
});
progressCommentWasUpdated = true;
return {
success: true,
commentId: result.data.id,
+3
View File
@@ -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,