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.
1 parent 04043af commit eecc00fCopy full SHA for eecc00f
validate.js
@@ -173,7 +173,7 @@ async function validate() {
173
}
174
const repos = await fetchRepoPage(orgs[index]);
175
const next = await sequenced(index + 1);
176
- return repos.concat(next);
+ return repos.concat(next).filter(r => !r.isPrivate);
177
178
const allrepos = await sequenced(0);
179
const fullName = r => r.owner.login + '/' + r.name;
@@ -200,7 +200,7 @@ async function validate() {
200
const allgroups = new Set();
201
const groupRepos = {};
202
for (const r of allrepos) {
203
- if (!r || r.isArchived || r.isPrivate) {
+ if (!r || r.isArchived) {
204
continue;
205
206
0 commit comments