Skip to content

Commit 28bc944

Browse files
committed
fix
1 parent 88ab187 commit 28bc944

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/pr-comment.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function postCustomForArchiveResources({ github, context, url }) {
3131
await createOrUpdateComment(pullRequestNumber);
3232
} else {
3333
console.log(
34-
"No open pull request found for this push. Logging publish information to console:"
34+
"No open pull request found for this push. Logging publish information to console:",
3535
);
3636
console.log(`\n${"=".repeat(50)}`);
3737
console.log(body);
@@ -67,7 +67,7 @@ export async function postCustomForArchiveResources({ github, context, url }) {
6767
});
6868

6969
return comments.data.find((comment) =>
70-
comment.body.includes(botCommentIdentifier)
70+
comment.body.includes(botCommentIdentifier),
7171
);
7272
}
7373

0 commit comments

Comments
 (0)