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