From 8d4c1d0e217a6c6e5470ff38c47f5e10075d8e84 Mon Sep 17 00:00:00 2001 From: Miguel Langarano Date: Mon, 8 Jan 2024 20:19:39 -0500 Subject: [PATCH] chore(fix): fix condition --- src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.js b/src/utils.js index 50371a9..87a292b 100644 --- a/src/utils.js +++ b/src/utils.js @@ -58,7 +58,7 @@ function getFields () { */ function getGhaEventData (eventFilePath, isGha) { try { - if (!eventFilePath || !isGha) { + if (!eventFilePath || isGha !== 'true') { return }