update_issue
Update GitHub issues by modifying titles, descriptions, status, labels, or assignees. Automates task management through the GitHub Kanban MCP Server, streamlining issue tracking and collaboration.
Instructions
既存のissueを更新します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignees | No | 新しいアサイン | |
| body | No | 新しい本文 | |
| emoji | No | タイトルの先頭に付与する絵文字 | |
| issue_number | Yes | issue番号 | |
| labels | No | 新しいラベル | |
| path | No | Gitリポジトリの絶対パス | |
| state | No | 新しい状態 | |
| title | No | 新しいタイトル |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"description": "新しいアサイン",
"items": {
"type": "string"
},
"type": "array"
},
"body": {
"description": "新しい本文",
"type": "string"
},
"emoji": {
"description": "タイトルの先頭に付与する絵文字",
"type": "string"
},
"issue_number": {
"description": "issue番号",
"type": "number"
},
"labels": {
"description": "新しいラベル",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Gitリポジトリの絶対パス",
"type": "string"
},
"state": {
"description": "新しい状態",
"enum": [
"open",
"closed"
],
"type": "string"
},
"title": {
"description": "新しいタイトル",
"type": "string"
}
},
"required": [
"issue_number"
],
"type": "object"
}