get_workflow_run
Retrieve detailed information about a specific GitHub Actions workflow run by providing the repository owner, repository name, and run ID for effective monitoring and analysis.
Instructions
Get details of a specific workflow run
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | Yes | Repository owner | |
| repo | Yes | Repository name | |
| runId | Yes | The ID of the workflow run |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"description": "Repository owner",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"runId": {
"description": "The ID of the workflow run",
"type": "number"
}
},
"required": [
"owner",
"repo",
"runId"
],
"type": "object"
}