diff --git a/schedule/monitorJob.ts b/schedule/monitorJob.ts index 880dfef..b632f60 100644 --- a/schedule/monitorJob.ts +++ b/schedule/monitorJob.ts @@ -20,9 +20,9 @@ const doMonitor = async (monitor: DB.Monitor): Promise => { Number(pipeline_id) ) // 是否所有Stage关联的Job都成功了 - const isAllSuccess = jobList.every( - (job) => job.stage === stage && job.status === "success" - ) + const isAllSuccess = jobList + .filter((job) => job.stage === stage) + .every((job) => job.status === "success") // 没全部成功跳过 if (!isAllSuccess) return // 先删除监控