This repository was archived by the owner on May 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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')
Original file line number Diff line number Diff 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' )
You can’t perform that action at this time.
0 commit comments