Skip to content

Commit 05e31e4

Browse files
authored
fix: reduce graphQL pagination size to 10 (#2579)
This will make more API calls, but reduce the chance of a timeout
1 parent d5f2ca8 commit 05e31e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ export class GitHub {
447447
cursor,
448448
owner: this.repository.owner,
449449
repo: this.repository.repo,
450-
num: 25,
450+
num: 10,
451451
targetBranch,
452452
maxFilesChanged: 100, // max is 100
453453
};

0 commit comments

Comments
 (0)