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 e86864d commit 77c8747Copy full SHA for 77c8747
.github/workflows/pull-request-test.yml
@@ -20,6 +20,10 @@ jobs:
20
issue_number: context.payload.number,
21
})
22
23
+ // Find any comment already made by the bot.
24
+ const botComment = comments.find(comment => comment.user.id === 41898282)
25
+ const commentBody = "Hello from actions/github-script! (${{ github.sha }})"
26
+
27
if (context.payload.pull_request.head.repo.full_name !== 'actions/github-script') {
28
console.log('Not attempting to write comment on PR from fork');
29
} else {
0 commit comments