github_get_workflow_run
Retrieve detailed information about a GitHub Actions workflow run, including logs if specified, using repository owner, name, and run ID inputs.
Instructions
Get detailed workflow run information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_logs | No | ||
repo_name | Yes | ||
repo_owner | Yes | ||
run_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_logs": {
"default": false,
"title": "Include Logs",
"type": "boolean"
},
"repo_name": {
"title": "Repo Name",
"type": "string"
},
"repo_owner": {
"title": "Repo Owner",
"type": "string"
},
"run_id": {
"title": "Run Id",
"type": "integer"
}
},
"required": [
"repo_owner",
"repo_name",
"run_id"
],
"title": "GitHubGetWorkflowRun",
"type": "object"
}