From 50ed41334a80124ef2e49d080867b7abe0157632 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 29 Aug 2024 15:41:27 -0500 Subject: [PATCH] DRIVERS-2956 Fix return value of findComment in Github App (#480) --- .evergreen/github_app/utils.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.evergreen/github_app/utils.mjs b/.evergreen/github_app/utils.mjs index 255307e4..ac4a3d8b 100644 --- a/.evergreen/github_app/utils.mjs +++ b/.evergreen/github_app/utils.mjs @@ -54,7 +54,7 @@ async function findComment(octokit, owner, repo, targetSha, bodyMatch, state) { issue_number: issue.number, headers }); - return { comment: resp.data.find(comment => comment.body.includes(bodyMatch)), number: issue.number} + return { comment: resp.data.find(comment => comment.body.includes(bodyMatch)), issue_number: issue.number} }