list_issues
Fetch GitHub issues based on status, assignee, labels, milestone, and sorting criteria to streamline project tracking and management.
Instructions
List GitHub issues
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignee | No | ||
| direction | No | ||
| labels | No | ||
| limit | No | ||
| milestone | No | ||
| sort | No | ||
| status | Yes |
Input Schema (JSON Schema)
{
"properties": {
"assignee": {
"type": "string"
},
"direction": {
"type": "string"
},
"labels": {
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"type": "string"
},
"milestone": {
"type": "string"
},
"sort": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
}