github_get_failing_jobs
Retrieve detailed insights into failing jobs within a GitHub pull request, including logs and annotations, to identify and resolve issues efficiently.
Instructions
Get detailed information about failing jobs in a PR
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_annotations | No | ||
| include_logs | No | ||
| pr_number | Yes | ||
| repo_name | Yes | ||
| repo_owner | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_annotations": {
"default": true,
"title": "Include Annotations",
"type": "boolean"
},
"include_logs": {
"default": true,
"title": "Include Logs",
"type": "boolean"
},
"pr_number": {
"title": "Pr Number",
"type": "integer"
},
"repo_name": {
"title": "Repo Name",
"type": "string"
},
"repo_owner": {
"title": "Repo Owner",
"type": "string"
}
},
"required": [
"repo_owner",
"repo_name",
"pr_number"
],
"title": "GitHubGetFailingJobs",
"type": "object"
}