Skip to content

Commit 3ab242a

Browse files
committed
Correct duplicate check.
1 parent db0f4dc commit 3ab242a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pull-request-comments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ jobs:
265265
const comments = ( await github.rest.issues.listComments( commentInfo ) ).data;
266266
267267
for ( const currentComment of comments ) {
268-
if ( currentComment.user.type === 'Bot' && currentComment.body.includes( 'Build Script Results Comparison' ) ) {
268+
if ( currentComment.user.type === 'Bot' && currentComment.body.includes( 'Build Server Comparison' ) ) {
269269
commentInfo.comment_id = currentComment.id;
270270
break;
271271
}

0 commit comments

Comments
 (0)