Skip to content

Commit

Permalink
DRIVERS-2956 Fix return value of findComment in Github App (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Aug 29, 2024
1 parent 46a7a77 commit 50ed413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .evergreen/github_app/utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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}
}


Expand Down

0 comments on commit 50ed413

Please sign in to comment.