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 72a7e51 commit 84806b9Copy full SHA for 84806b9
src/pages/contributors/subcomponents/ContributorsGithubApi.ts
@@ -4,9 +4,13 @@ import {
4
ReposInApi
5
} from '../../../features/contributors/ContributorsTypes';
6
7
-const apiRepoDetails: string = 'https://api.github.com/orgs/source-academy/repos';
+const apiRepoDetails: string = 'https://api.github.com/orgs/source-academy/repos?per_page=59';
8
const ignoreRepos: string[] = ['assessments', 'tools', 'source-academy2'];
9
-const ignoreContributors: string[] = ['dependabot[bot]', 'dependabot-preview[bot]'];
+const ignoreContributors: string[] = [
10
+ 'dependabot[bot]',
11
+ 'dependabot-preview[bot]',
12
+ 'renovate[bot]'
13
+];
14
15
export const fetchRepos = async () => {
16
const response = await fetch(apiRepoDetails);
0 commit comments