Skip to content

Commit

Permalink
chore(fix): fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelangarano committed Jan 9, 2024
1 parent 7a4c7af commit 8d4c1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function getFields () {
*/
function getGhaEventData (eventFilePath, isGha) {
try {
if (!eventFilePath || !isGha) {
if (!eventFilePath || isGha !== 'true') {
return
}

Expand Down

0 comments on commit 8d4c1d0

Please sign in to comment.