Fix event action check

This commit is contained in:
Nick Alteen
2025-09-16 13:00:00 -04:00
parent f44c11ebd1
commit 6b35c8253b
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export async function run() {
return core.info('Skipping...Not an Issue/PR Event')
// Skip if this is not an issue/PR open event.
if (github.context.action !== 'opened')
if (github.context.payload.action !== 'opened')
return core.info('Skipping...Not an Opened Event')
// Confirm the sender data is present.