From 82678ec618cfb9bf5905392272d2037086d16e03 Mon Sep 17 00:00:00 2001 From: Nara Kasbergen Date: Tue, 7 Jan 2025 08:46:55 +0100 Subject: [PATCH] fix: ignore Dependabot checks --- scripts/collect-status.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/collect-status.js b/scripts/collect-status.js index 8deba249d..739256ad5 100755 --- a/scripts/collect-status.js +++ b/scripts/collect-status.js @@ -15,6 +15,10 @@ async function processWorkflows(data) { const runSet = {}; for (const run of data.workflow_runs) { const name = run.name; + if (name.startsWith("npm_and_yarn")) { + // these are Dependabot checks, we don't care about them on this dashboard + continue; + } if (!runSet[name]) { runSet[name] = [run]; } else {