From d82577588bd549b393d8cd12468d1e26bf6dcefa Mon Sep 17 00:00:00 2001 From: zhaoyingbo Date: Fri, 9 Aug 2024 07:37:07 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E7=9B=91=E6=8E=A7Job?= =?UTF-8?q?=E7=9A=84=E6=88=90=E5=8A=9F=E5=88=A4=E6=96=AD=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schedule/monitorJob.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 // 先删除监控