list_workflows
Retrieve and manage workflows in a GitHub repository by specifying owner, repo, pagination, and results per page. Simplify workflow monitoring and interaction.
Instructions
List workflows in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | Repository owner | |
page | No | Page number for pagination | |
perPage | No | Results per page (max 100) | |
repo | Yes | Repository name |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"description": "Repository owner",
"type": "string"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"perPage": {
"description": "Results per page (max 100)",
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}