From 89e429e8829289e90c9f728bcfd6cfaab201ef08 Mon Sep 17 00:00:00 2001 From: daydreamer-json Date: Tue, 24 Feb 2026 23:57:45 +0900 Subject: [PATCH] Forcibly exit normally when duplicate exec of Actions is detected --- src/cmds/archive.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cmds/archive.ts b/src/cmds/archive.ts index 222d644..95f9f49 100644 --- a/src/cmds/archive.ts +++ b/src/cmds/archive.ts @@ -843,7 +843,8 @@ async function mainCmdHandler() { if ((await githubUtils.checkIsActionRunning(githubAuthCfg)) === true) { logger.error('Duplicate exec of a GitHub Actions workflow has been detected'); - throw new Error('Github Actions workflow duplicate exec detected'); + // throw new Error('Github Actions workflow duplicate exec detected'); + return; } const cfg = appConfig.network.api.akEndfield;