diff --git a/.github/workflows/pull_requests_tests.yaml b/.github/workflows/pull_requests_tests.yaml index 862f870..0b95dbf 100644 --- a/.github/workflows/pull_requests_tests.yaml +++ b/.github/workflows/pull_requests_tests.yaml @@ -26,4 +26,4 @@ jobs: env: GOLANGCI_LINT_VERSION: "1.44.2" - name: Run pre-commit - uses: pre-commit/action@v2.0.3 + uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 diff --git a/github/types.go b/github/types.go index bd70c52..5b2a5b3 100644 --- a/github/types.go +++ b/github/types.go @@ -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: 25)"` + CheckRuns CheckRuns `graphql:"checkRuns(first: 100)"` } // CheckSuites represents the information about the check suite of a slice of Nodes @@ -93,7 +93,7 @@ type EdgeRootNode struct { AuthoredDate githubv4.DateTime Author Author StatusCheckRollup StatusCheckRollup - CheckSuites CheckSuites `graphql:"checkSuites(first: 20)"` + CheckSuites CheckSuites `graphql:"checkSuites(first: 100)"` Status NodeStatus }