Skip to content

Commit

Permalink
Merge in master
Browse files Browse the repository at this point in the history
  • Loading branch information
sarayourfriend committed Sep 27, 2024
2 parents 2fc32c1 + 68c0fd1 commit 79684ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ async function run(octokit, context, token) {
const commentRegExp = new RegExp(`<sub>[\s\n]*(compressed|gzip)-size-action${commentKey ? `::${commentKey}` : ''}</sub>`)
for (let i = comments.length; i--; ) {
const c = comments[i];
if (c.user.type === 'Bot' && commentRegExp.test(c.body)) {
if (commentRegExp.test(c.body)) {
commentId = c.id;
break;
}
Expand Down

0 comments on commit 79684ef

Please sign in to comment.