gh actions dup exec check improvement

This commit is contained in:
daydreamer-json
2026-02-24 22:54:05 +09:00
parent 6568f89441
commit 348c24f949

View File

@@ -67,7 +67,7 @@ async function checkIsActionRunning(
owner: authCfg.github.main.owner, owner: authCfg.github.main.owner,
repo: authCfg.github.main.repo, repo: authCfg.github.main.repo,
}); });
return data.data.workflow_runs.filter((e) => e.status !== 'completed').length > 1; return data.data.workflow_runs.filter((e) => e.status === 'in_progress').length > 1;
} }
export default { export default {