From 91b12310e9feff04bf16b8cf623c9eaac387970d Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Tue, 28 Jul 2020 14:08:29 +0200 Subject: [PATCH] Fail if unrecognized input --- dist/index.js | 3 +++ src/input-helper.ts | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/dist/index.js b/dist/index.js index 7da4f67..968e43e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -6374,6 +6374,9 @@ function getInputs() { const path = core.getInput(constants_1.Inputs.Path, { required: true }); const ifNoFilesFound = core.getInput(constants_1.Inputs.IfNoFilesFound); const noFileBehavior = constants_1.NoFileOptions[ifNoFilesFound]; + if (!noFileBehavior) { + core.setFailed(`Unrecognized if-no-files-found input. Provided ${ifNoFilesFound}. Available options include ${Object.keys(constants_1.NoFileOptions).map(k => constants_1.NoFileOptions[k])}`); + } return { artifactName: name, searchPath: path, diff --git a/src/input-helper.ts b/src/input-helper.ts index cab19f3..c0fa2a1 100644 --- a/src/input-helper.ts +++ b/src/input-helper.ts @@ -12,6 +12,14 @@ export function getInputs(): UploadInputs { const ifNoFilesFound = core.getInput(Inputs.IfNoFilesFound) const noFileBehavior: NoFileOptions = NoFileOptions[ifNoFilesFound] + if (!noFileBehavior) { + core.setFailed( + `Unrecognized if-no-files-found input. Provided ${ifNoFilesFound}. Available options include ${Object.keys( + NoFileOptions + ).map(k => NoFileOptions[k as string])}` + ) + } + return { artifactName: name, searchPath: path,