list_issues
Fetch GitHub Kanban board issues by state or labels to streamline task management and enhance workflow automation through organized issue tracking.
Instructions
カンバンボードのissue一覧を取得します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
labels | No | フィルタリングするラベル | |
path | No | Gitリポジトリの絶対パス | |
state | No | issueの状態 |
Input Schema (JSON Schema)
{
"properties": {
"labels": {
"description": "フィルタリングするラベル",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Gitリポジトリの絶対パス",
"type": "string"
},
"state": {
"description": "issueの状態",
"enum": [
"open",
"closed",
"all"
],
"type": "string"
}
},
"required": [],
"type": "object"
}