Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions github/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type WorkflowRun struct {
// CheckSuiteNode represents the information about the check suite information of the Node
type CheckSuiteNode struct {
WorkflowRun WorkflowRun
CheckRuns CheckRuns `graphql:"checkRuns(first: 100)"`
CheckRuns CheckRuns `graphql:"checkRuns(first: 25)"`
}

// CheckSuites represents the information about the check suite of a slice of Nodes
Expand Down Expand Up @@ -93,7 +93,7 @@ type EdgeRootNode struct {
AuthoredDate githubv4.DateTime
Author Author
StatusCheckRollup StatusCheckRollup
CheckSuites CheckSuites `graphql:"checkSuites(first: 100)"`
CheckSuites CheckSuites `graphql:"checkSuites(first: 20)"`
Status NodeStatus
}

Expand Down
Loading