GitHub Actions MCP Server

by ko1ynnky
Verified

get_workflow_run

Retrieve detailed information about a specific GitHub Actions workflow run by providing the repository owner, repository name, and run ID.

Instructions

Get details of a specific workflow run

Input Schema

NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
repoYesRepository name
runIdYesThe ID of the workflow run

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "owner": { "description": "Repository owner (username or organization)", "type": "string" }, "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