Skip to content

Commit 8623ac5

Browse files
gdudclaude
andcommitted
revert: roll checkRuns page size back to 25
The 100-run bump in PR #33 raised the GraphQL query cost ~20× (worst case ~2,526 points/call against the 5,000/hour bucket). Revert just the inner connection; checkSuites stays at 100. Repos whose CI emits more than 25 runs in a single suite will need a different fix. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent c5dd682 commit 8623ac5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

github/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ type WorkflowRun struct {
3434
// CheckSuiteNode represents the information about the check suite information of the Node
3535
type CheckSuiteNode struct {
3636
WorkflowRun WorkflowRun
37-
CheckRuns CheckRuns `graphql:"checkRuns(first: 100)"`
37+
CheckRuns CheckRuns `graphql:"checkRuns(first: 25)"`
3838
}
3939

4040
// CheckSuites represents the information about the check suite of a slice of Nodes

0 commit comments

Comments
 (0)