From 781c1bbab049bf2a388a6bd6502b21fe03edeac2 Mon Sep 17 00:00:00 2001 From: Victor Byrd Date: Mon, 2 May 2022 10:53:12 -0700 Subject: [PATCH] Update main.ts --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 8c107bb1..30326a75 100644 --- a/src/main.ts +++ b/src/main.ts @@ -25,7 +25,7 @@ async function run(): Promise { core.getInput('notification-summary') || 'GitHub Action Notification' const notificationColor = core.getInput('notification-color') || '0b93ff' const timezone = core.getInput('timezone') || 'UTC' - const verboseLogging: boolean = core.getInput('verbose-logging') + const verboseLogging = core.getInput('verbose-logging') const timestamp = moment() .tz(timezone) .format('dddd, MMMM Do YYYY, h:mm:ss a z')