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
Alicia Lopez committed Dec 21, 2021
1 parent 7cf9f11 commit 30e6295
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 30e6295

Please sign in to comment.