github_get_pr_checks
Retrieve check run details for a pull request on GitHub, including status and conclusion, to monitor and verify automated workflows in a specified repository.
Instructions
Get check runs for a pull request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conclusion | No | ||
pr_number | Yes | ||
repo_name | Yes | ||
repo_owner | Yes | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"conclusion": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Conclusion"
},
"pr_number": {
"title": "Pr Number",
"type": "integer"
},
"repo_name": {
"title": "Repo Name",
"type": "string"
},
"repo_owner": {
"title": "Repo Owner",
"type": "string"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
}
},
"required": [
"repo_owner",
"repo_name",
"pr_number"
],
"title": "GitHubGetPRChecks",
"type": "object"
}