get_workflow_run_jobs
Retrieve jobs for a specific GitHub Actions workflow run by specifying owner, repo, run ID, and filters to manage and monitor workflow execution details.
Instructions
Get jobs for a specific workflow run
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Filter jobs by completion status | |
| owner | Yes | Repository owner | |
| page | No | Page number for pagination | |
| perPage | No | Results per page (max 100) | |
| repo | Yes | Repository name | |
| runId | Yes | The ID of the workflow run |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"description": "Filter jobs by completion status",
"enum": [
"latest",
"all"
],
"type": "string"
},
"owner": {
"description": "Repository owner",
"type": "string"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"perPage": {
"description": "Results per page (max 100)",
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"runId": {
"description": "The ID of the workflow run",
"type": "number"
}
},
"required": [
"owner",
"repo",
"runId"
],
"type": "object"
}