We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cf7eaf commit e5f0edeCopy full SHA for e5f0ede
.github/workflows/benchmark-report.yml
@@ -59,7 +59,8 @@ jobs:
59
})
60
61
// Find any comment already made by the bot.
62
- const botComment = comments.find(comment => comment.user.id === 41898282)
+ const botComments = comments.filter(comment => comment.user.id === 41898282)
63
+ const botComment = botComments.find(cm => !cm.body.include('Try it on binder') )
64
if (botComment) {
65
await github.issues.updateComment({
66
owner: context.repo.owner,
0 commit comments