Skip to content

Commit 5cfe48c

Browse files
committed
increase limit to 100
1 parent 4233aa0 commit 5cfe48c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/github/pullrequests.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ func GetPullRequestReviewComments(ctx context.Context, gqlClient *githubv4.Clien
347347
"repo": githubv4.String(repo),
348348
"prNum": githubv4.Int(int32(pullNumber)), //nolint:gosec // pullNumber is controlled by user input validation
349349
"first": githubv4.Int(*gqlParams.First),
350-
"commentsPerThread": githubv4.Int(50),
350+
"commentsPerThread": githubv4.Int(100),
351351
}
352352

353353
// Add cursor if provided

0 commit comments

Comments
 (0)