create_issue
Create GitHub issues with titles, emojis, labels, assignees, and formatted bodies to enhance task management and readability on a Kanban board.
Instructions
新しいissueを作成します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | アサインするユーザー | |
body | No | issueの本文(## の先頭には絵文字を付与して可読性を上げて) | |
emoji | No | タイトルの先頭に付与するユニークな絵文字 | |
labels | No | issueのラベル | |
path | No | Gitリポジトリの絶対パス | |
title | Yes | issueのタイトル |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"description": "アサインするユーザー",
"items": {
"type": "string"
},
"type": "array"
},
"body": {
"description": "issueの本文(## の先頭には絵文字を付与して可読性を上げて)",
"type": "string"
},
"emoji": {
"description": "タイトルの先頭に付与するユニークな絵文字",
"type": "string"
},
"labels": {
"description": "issueのラベル",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Gitリポジトリの絶対パス",
"type": "string"
},
"title": {
"description": "issueのタイトル",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}