We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ef5412 + eecc00f commit b83b867Copy full SHA for b83b867
validate.js
@@ -39,7 +39,7 @@ async function validate() {
39
}
40
const repos = await github.fetchRepoPage(orgs[index]);
41
const next = await sequenced(index + 1);
42
- return repos.concat(next);
+ return repos.concat(next).filter(r => !r.isPrivate);
43
44
const allrepos = await sequenced(0);
45
const fullName = r => r.owner.login + '/' + r.name;
@@ -66,7 +66,7 @@ async function validate() {
66
const allgroups = new Set();
67
const groupRepos = {};
68
for (const r of allrepos) {
69
- if (!r || r.isArchived || r.isPrivate) {
+ if (!r || r.isArchived) {
70
continue;
71
72
0 commit comments