mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-06-11 00:22:48 +00:00
Use core.getBooleanInput (#280)
* Use core.getBooleanInput * Update test
This commit is contained in:
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -53,7 +53,7 @@ const fs = __importStar(__nccwpck_require__(7147));
|
||||
let tempDirectory = process.env['RUNNER_TEMPDIRECTORY'] || '';
|
||||
const EnhancedOctokit = utils_1.GitHub.plugin(plugin_throttling_1.throttling);
|
||||
const githubToken = core.getInput('github-token');
|
||||
const failFast = core.getInput('fail-fast') === 'true' ? true : false;
|
||||
const failFast = core.getBooleanInput('fail-fast');
|
||||
let options = {
|
||||
throttle: {
|
||||
onRateLimit: (retryAfter, opts) => {
|
||||
|
||||
Reference in New Issue
Block a user