We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e5ae9b commit a5063feCopy full SHA for a5063fe
extract-horizontal-reviews.js
@@ -8,7 +8,7 @@ const hrLabelRegexp = new RegExp(/-(tracker|needs-resolution)$/);
8
const isHRLabel = n => n.name.match(hrLabelRegexp);
9
10
console.log(JSON.stringify(
11
- repos.filter(r => r.labels && r.labels.find(isHRLabel) ||
+ repos.filter(r => !r.isArchived && r.labels && r.labels.find(isHRLabel) ||
12
(r.w3c && r.w3c["repo-type"]
13
&& (r.w3c["repo-type"] === "rec-track" ||
14
r.w3c["repo-type"].includes("rec-track"))))
0 commit comments