forked from github/github-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedit_milestone.snap
More file actions
50 lines (50 loc) · 1.13 KB
/
Copy pathedit_milestone.snap
File metadata and controls
50 lines (50 loc) · 1.13 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
46
47
48
49
50
{
"annotations": {
"title": "Edit milestone",
"readOnlyHint": false
},
"description": "Edit an existing milestone in a GitHub repository.",
"inputSchema": {
"properties": {
"description": {
"description": "New milestone description",
"type": "string"
},
"due_on": {
"description": "New milestone due date in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ)",
"type": "string"
},
"milestone_number": {
"description": "The number of the milestone to edit",
"type": "number"
},
"owner": {
"description": "Repository owner",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"state": {
"description": "New milestone state",
"enum": [
"open",
"closed"
],
"type": "string"
},
"title": {
"description": "New milestone title",
"type": "string"
}
},
"required": [
"owner",
"repo",
"milestone_number"
],
"type": "object"
},
"name": "edit_milestone"
}