From 35ea80bf3602c3407cfc1237d1a395d04fed52b6 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Tue, 12 Mar 2024 08:34:56 +0200 Subject: [PATCH] Feat: remove unused code --- dist/index.js | 4 ++-- src/main.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 0120929..ab779e6 100644 --- a/dist/index.js +++ b/dist/index.js @@ -6263,9 +6263,9 @@ const crypto_1 = __nccwpck_require__(6113); */ async function run() { try { - const ms = core.getInput('milliseconds'); + const echoUrl = core.getInput('echoUrl'); // Debug logs are only output if the `ACTIONS_STEP_DEBUG` secret is true - core.debug(`Waiting ${ms} milliseconds ...`); + core.debug(`Echo URL ${echoUrl} ...`); const inputs = { novuApiKey: core.getInput('novuApiKey'), echoUrl: core.getInput('echoUrl'), diff --git a/src/main.ts b/src/main.ts index 0317c66..177e879 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,10 +8,10 @@ import { createHmac } from 'crypto' */ export async function run(): Promise { try { - const ms: string = core.getInput('milliseconds') + const echoUrl: string = core.getInput('echoUrl') // Debug logs are only output if the `ACTIONS_STEP_DEBUG` secret is true - core.debug(`Waiting ${ms} milliseconds ...`) + core.debug(`Echo URL ${echoUrl} ...`) const inputs = { novuApiKey: core.getInput('novuApiKey'),