get_workflow_usage
Retrieve usage statistics for a specific GitHub Actions workflow by providing the repository owner, repository name, and workflow ID or filename.
Instructions
Get usage statistics of a workflow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | Yes | Repository owner (username or organization) | |
| repo | Yes | Repository name | |
| workflowId | Yes | The ID of the workflow or filename |
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"
},
"workflowId": {
"description": "The ID of the workflow or filename",
"type": [
"string",
"number"
]
}
},
"required": [
"owner",
"repo",
"workflowId"
],
"type": "object"
}