From ff9b87467bc048c9df7c5d4645fb87fc4ed36f3d Mon Sep 17 00:00:00 2001 From: Leo Ribeiro Date: Mon, 25 Sep 2023 18:37:46 -0400 Subject: [PATCH] add index dist --- dist/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dist/index.js b/dist/index.js index cd2b96f..260d04f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2760,9 +2760,11 @@ const wait_1 = __nccwpck_require__(259); */ async function run() { try { + const docsReport = core.getInput('docs_report', { required: true }); const ms = core.getInput('milliseconds'); // Debug logs are only output if the `ACTIONS_STEP_DEBUG` secret is true core.debug(`Waiting ${ms} milliseconds ...`); + core.debug(`docs report ${docsReport} ...`); // Log the current timestamp, wait, then log the new timestamp core.debug(new Date().toTimeString()); await (0, wait_1.wait)(parseInt(ms, 10));