list-issues
Retrieve and filter GitHub repository issues by status, labels, sort order, and date range to track and manage project tasks effectively.
Instructions
List and filter repository issues
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | No | ||
labels | No | ||
owner | Yes | ||
page | No | ||
per_page | No | ||
repo | Yes | ||
since | No | ||
sort | No | ||
state | No |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"labels": {
"items": {
"type": "string"
},
"type": "array"
},
"owner": {
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"repo": {
"type": "string"
},
"since": {
"type": "string"
},
"sort": {
"enum": [
"created",
"updated",
"comments"
],
"type": "string"
},
"state": {
"enum": [
"open",
"closed",
"all"
],
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}