From a6b62702c32999eb5d467c84af0f9213e05e9f5f Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Tue, 25 Jun 2024 15:02:14 +0200 Subject: [PATCH] chore: fixed error posting for invalid command payload --- src/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin.ts b/src/plugin.ts index 27af348..bf6c274 100644 --- a/src/plugin.ts +++ b/src/plugin.ts @@ -72,7 +72,7 @@ export async function plugin(inputs: PluginInputs, env: Env) { await context.logger.error(e.message); } } else { - context.logger.fatal(e); + await context.logger.error(e); throw e; } }