get_pr_status_checks
Retrieve CI check runs and commit status for a pull request's HEAD commit to determine if all checks pass or if results are incomplete.
Instructions
Return the CI check runs and commit status for a pull request's HEAD commit.
Pages through up to MAX_STATUS_CHECKS_SUITE_PAGES of check suites (50 per page). For any suite whose first 100 runs are not the full set, drains up to MAX_STATUS_CHECKS_RUN_PAGES_PER_SUITE additional pages via the supplemental query. If either cap is hit before the connection is exhausted, the result is flagged truncated=True and overall is downgraded from 'passing' to 'unknown' so the caller does not act on a partial view.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo_owner | Yes | ||
| repo_name | Yes | ||
| pr_number | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pr_number | Yes | ||
| overall | Yes | ||
| check_runs | Yes | ||
| commit_statuses | Yes | ||
| truncated | Yes |