From 81bd2b60cc0f8e7d8c3922125614ef5089a5861b Mon Sep 17 00:00:00 2001 From: Casper Date: Sat, 18 Feb 2023 16:49:48 +0800 Subject: [PATCH] fix: correct the github action log --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index fc70ebc3f..5d2210554 100644 --- a/src/app.ts +++ b/src/app.ts @@ -41,7 +41,7 @@ const action = async () => { const utcOffset = Number(core.getInput('UTC_OFFSET', {required: false})); core.info(`UTC offset: ${utcOffset}`); const exclude = core.getInput('EXCLUE', {required: false}).split(','); - core.info(`Excluded languages: ${utcOffset}`); + core.info(`Excluded languages: ${exclude}`); try { // Remove old output core.info(`Remove old cards...`);