diff --git a/src/pages/contributors/subcomponents/ContributorsGithubApi.ts b/src/pages/contributors/subcomponents/ContributorsGithubApi.ts index 1f32e34666..725e7593be 100644 --- a/src/pages/contributors/subcomponents/ContributorsGithubApi.ts +++ b/src/pages/contributors/subcomponents/ContributorsGithubApi.ts @@ -4,9 +4,13 @@ import { ReposInApi } from '../../../features/contributors/ContributorsTypes'; -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'; const ignoreRepos: string[] = ['assessments', 'tools', 'source-academy2']; -const ignoreContributors: string[] = ['dependabot[bot]', 'dependabot-preview[bot]']; +const ignoreContributors: string[] = [ + 'dependabot[bot]', + 'dependabot-preview[bot]', + 'renovate[bot]' +]; export const fetchRepos = async () => { const response = await fetch(apiRepoDetails);