From 3aa1d019577617592fd4fd35d524a46681e25be8 Mon Sep 17 00:00:00 2001 From: maxcoulombe Date: Mon, 27 Feb 2023 16:15:17 -0500 Subject: [PATCH] * CI should fail --- dist/index.js | 2 ++ src/action.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dist/index.js b/dist/index.js index 3c4b39f..36c6f96 100644 --- a/dist/index.js +++ b/dist/index.js @@ -18502,6 +18502,8 @@ const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes']; const ENCODING_TYPES = ['base64', 'hex', 'utf8']; async function exportSecrets() { + throw console.error("CI SHOULD FAIL"); + const vaultUrl = core.getInput('url', { required: true }); const vaultNamespace = core.getInput('namespace', { required: false }); const extraHeaders = parseHeadersInput('extraHeaders', { required: false }); diff --git a/src/action.js b/src/action.js index b898005..3507dc6 100644 --- a/src/action.js +++ b/src/action.js @@ -9,6 +9,8 @@ const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes']; const ENCODING_TYPES = ['base64', 'hex', 'utf8']; async function exportSecrets() { + throw console.error("CI SHOULD FAIL"); + const vaultUrl = core.getInput('url', { required: true }); const vaultNamespace = core.getInput('namespace', { required: false }); const extraHeaders = parseHeadersInput('extraHeaders', { required: false });