Forcibly exit normally when duplicate exec of Actions is detected

This commit is contained in:
daydreamer-json
2026-02-24 23:57:45 +09:00
parent b8cf480fd3
commit 89e429e882

View File

@@ -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;