GitHub Kanban MCP Server

update_issue

既存のissueを更新します

Input Schema

NameRequiredDescriptionDefault
assigneesNo新しいアサイン
bodyNo新しい本文
emojiNoタイトルの先頭に付与する絵文字
issue_numberYesissue番号
labelsNo新しいラベル
pathNoGitリポジトリの絶対パス
stateNo新しい状態
titleNo新しいタイトル

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" }