GitHub Actions MCP Server

by ko1ynnky
Verified

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

NameRequiredDescriptionDefault
filterNoFilter jobs by their completed_at date
ownerYesRepository owner (username or organization)
pageNoPage number for pagination
perPageNoResults per page (max 100)
repoYesRepository name
runIdYesThe 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" }

You must be authenticated.

Other Tools from GitHub Actions MCP Server

Related Tools

ID: ydaumkc8kn