Skip to content

Commit

Permalink
Fix enablement logic for v3
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMGreene committed Jan 30, 2023
1 parent 5992ce8 commit a8216d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function getRequiredVars() {
githubToken: core.getInput('token'),
staticSiteGenerator: core.getInput('static_site_generator'),
generatorConfigFile: core.getInput('generator_config_file'),
enablement: core.getInput('enablement') !== 'true'
enablement: core.getInput('enablement') === 'true'
}
}

Expand Down

0 comments on commit a8216d6

Please sign in to comment.