Skip to content
This repository was archived by the owner on May 26, 2026. It is now read-only.

Commit 2fc208d

Browse files
committed
await
1 parent 3933c96 commit 2fc208d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/index.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43091,10 +43091,10 @@ async function main() {
4309143091
)
4309243092
// Only nag when the PR body could have changed
4309343093
if (
43094-
context.eventName === 'pull_request' &&
43094+
['pull_request', 'pull_request_target'].incldues(context.eventName) &&
4309543095
['opened', 'edited'].includes(payload.action)
4309643096
) {
43097-
void nagToLinkJiraIssue(comments)
43097+
await nagToLinkJiraIssue(comments)
4309843098
}
4309943099

4310043100
core.info('Could not find issue IDs')

index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ async function main() {
380380
['pull_request', 'pull_request_target'].incldues(context.eventName) &&
381381
['opened', 'edited'].includes(payload.action)
382382
) {
383-
void nagToLinkJiraIssue(comments)
383+
await nagToLinkJiraIssue(comments)
384384
}
385385

386386
core.info('Could not find issue IDs')

0 commit comments

Comments
 (0)