We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f24982 commit 88b36e9Copy full SHA for 88b36e9
components/server/ee/src/github/github-app-support.ts
@@ -53,7 +53,7 @@ export class GitHubAppSupport {
53
const listReposForInstallation = async (installation: RestEndpointMethodTypes["apps"]["getUserInstallation"]["response"]) => {
54
const sub = await probot.auth(installation.data.id);
55
try {
56
- const accessibleRepos = await sub.apps.listReposAccessibleToInstallation();
+ const accessibleRepos = await sub.apps.listReposAccessibleToInstallation({ per_page: 100 });
57
return accessibleRepos.data.repositories.map(r => {
58
return {
59
name: r.name,
0 commit comments