get_workflow_run_jobs
Retrieve jobs associated with a specific GitHub Actions workflow run by specifying the repository, owner, and run ID. Filter jobs by completion status or paginate results for efficient management.
Instructions
Get jobs for a specific workflow run
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | Filter jobs by their completed_at date | |
owner | Yes | Repository owner (username or organization) | |
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filter": {
"description": "Filter jobs by their completed_at date",
"enum": [
"latest",
"all"
],
"type": "string"
},
"owner": {
"description": "Repository owner (username or organization)",
"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"
}