Skip to content

Commit

Permalink
fix: fetch first 100 check suites in PR checker
Browse files Browse the repository at this point in the history
10 is not enough, as we have around 25 GitHub checks nowadays.
  • Loading branch information
targos committed Dec 21, 2021
1 parent d0215d6 commit e98d72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/queries/PRCommits.gql
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ query Commits($prid: Int!, $owner: String!, $repo: String!, $after: String) {
message
messageHeadline
authoredByCommitter
checkSuites(first: 10) {
checkSuites(first: 100) {
nodes {
conclusion,
status
Expand Down

0 comments on commit e98d72e

Please sign in to comment.