-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathreprioritize_sub_issue.snap
More file actions
45 lines (45 loc) · 1.23 KB
/
reprioritize_sub_issue.snap
File metadata and controls
45 lines (45 loc) · 1.23 KB
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
42
43
44
45
{
"annotations": {
"destructiveHint": false,
"openWorldHint": true,
"title": "Reprioritize Sub-Issue"
},
"description": "Reprioritize (reorder) a sub-issue relative to other sub-issues.",
"inputSchema": {
"properties": {
"after_id": {
"description": "The ID of the sub-issue to place this after (either after_id OR before_id should be specified)",
"type": "number"
},
"before_id": {
"description": "The ID of the sub-issue to place this before (either after_id OR before_id should be specified)",
"type": "number"
},
"issue_number": {
"description": "The parent issue number",
"minimum": 1,
"type": "number"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"sub_issue_id": {
"description": "The ID of the sub-issue to reorder. ID is not the same as issue number",
"type": "number"
}
},
"required": [
"owner",
"repo",
"issue_number",
"sub_issue_id"
],
"type": "object"
},
"name": "reprioritize_sub_issue"
}