Skip to content

Commit

Permalink
- fix default condition check
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Nov 21, 2021
1 parent 80184ba commit 6a3cae3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export async function run(): Promise<void> {
return
}

const updateCheck = core.getInput('update_check')
const updateCheck = core.getInput('update_check') === 'true'
const checkName = core.getInput('check_name')
const commit = core.getInput('commit')
const failOnFailure = core.getInput('fail_on_failure') === 'true'
Expand Down

0 comments on commit 6a3cae3

Please sign in to comment.