Skip to content

Commit 88b36e9

Browse files
committed
[projects] increase repo listing limit
1 parent 1f24982 commit 88b36e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/server/ee/src/github/github-app-support.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class GitHubAppSupport {
5353
const listReposForInstallation = async (installation: RestEndpointMethodTypes["apps"]["getUserInstallation"]["response"]) => {
5454
const sub = await probot.auth(installation.data.id);
5555
try {
56-
const accessibleRepos = await sub.apps.listReposAccessibleToInstallation();
56+
const accessibleRepos = await sub.apps.listReposAccessibleToInstallation({ per_page: 100 });
5757
return accessibleRepos.data.repositories.map(r => {
5858
return {
5959
name: r.name,

0 commit comments

Comments
 (0)