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 eed864b commit 96197a9Copy full SHA for 96197a9
1 file changed
src/lib/github.ts
@@ -207,7 +207,9 @@ export class GitHubAPI {
207
}
208
209
const repos = await response.json();
210
- const filteredRepos = repos.filter(this.shouldIncludeRepo);
+ const filteredRepos = repos.filter(
211
+ (repo: any) => this.shouldIncludeRepo(repo) && repo.name.toLowerCase().includes('module')
212
+ );
213
214
const modulesWithContributors = await Promise.all(
215
filteredRepos.map(async (repo: any) => {
0 commit comments