Skip to content

Commit

Permalink
fix: ignore Dependabot checks
Browse files Browse the repository at this point in the history
  • Loading branch information
xiehan committed Jan 7, 2025
1 parent a07511f commit 82678ec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/collect-status.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 82678ec

Please sign in to comment.