Skip to content

Commit b75e1a7

Browse files
committed
build: fix inline script
1 parent 3d0d482 commit b75e1a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run_tests_coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ jobs:
205205
repo: context.repo.repo,
206206
});
207207
208-
const isBotComment = comments.find(comment => comment.user.login === 'stdlib-bot' && comment.body.includes('## Coverage Report'));
209-
if (isBotComment) {
208+
const botComment = comments.find( comment => comment.user.login === 'stdlib-bot' && comment.body.includes( '## Coverage Report' ) );
209+
if ( botComment ) {
210210
await github.rest.issues.updateComment({
211211
owner: context.repo.owner,
212212
repo: context.repo.repo,

0 commit comments

Comments
 (0)