mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-06-10 08:10:55 +00:00
Use core.getBooleanInput (#280)
* Use core.getBooleanInput * Update test
This commit is contained in:
@@ -11,7 +11,7 @@ let tempDirectory = process.env['RUNNER_TEMPDIRECTORY'] || ''
|
||||
const EnhancedOctokit = GitHub.plugin(throttling)
|
||||
|
||||
const githubToken = core.getInput('github-token')
|
||||
const failFast = core.getInput('fail-fast') === 'true' ? true : false
|
||||
const failFast = core.getBooleanInput('fail-fast')
|
||||
|
||||
let options: OctokitOptions = {
|
||||
throttle: {
|
||||
|
||||
Reference in New Issue
Block a user