Merge 534d998e31 into sapling-pr-archive-bolinfest

This commit is contained in:
Michael Bolin
2025-05-30 11:15:26 -07:00
committed by GitHub

View File

@@ -17,6 +17,7 @@ export async function postComment(
const bodyWithFooter = footer ? `${commentBody}${footer}` : commentBody;
const octokit = ctx.getOctokit();
console.info("Got Octokit instance for posting comment");
const { owner, repo } = github.context.repo;
const issueNumber = github.context.issue.number;
@@ -28,6 +29,7 @@ export async function postComment(
}
try {
console.info("Calling octokit.rest.issues.createComment()");
await octokit.rest.issues.createComment({
owner,
repo,