-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathadd_sub_issue.snap
More file actions
41 lines (41 loc) · 1002 Bytes
/
add_sub_issue.snap
File metadata and controls
41 lines (41 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"annotations": {
"destructiveHint": false,
"openWorldHint": true,
"title": "Add Sub-Issue"
},
"description": "Add a sub-issue to a parent issue.",
"inputSchema": {
"properties": {
"issue_number": {
"description": "The parent issue number",
"minimum": 1,
"type": "number"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"replace_parent": {
"description": "If true, reparent the sub-issue if it already has a parent",
"type": "boolean"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"sub_issue_id": {
"description": "The ID of the sub-issue to add. ID is not the same as issue number",
"type": "number"
}
},
"required": [
"owner",
"repo",
"issue_number",
"sub_issue_id"
],
"type": "object"
},
"name": "add_sub_issue"
}