forked from github/github-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreate_milestone.snap
More file actions
47 lines (47 loc) · 1022 Bytes
/
Copy pathcreate_milestone.snap
File metadata and controls
47 lines (47 loc) · 1022 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
42
43
44
45
46
47
{
"annotations": {
"title": "Create new milestone",
"readOnlyHint": false
},
"description": "Create a new milestone in a GitHub repository.",
"inputSchema": {
"properties": {
"description": {
"description": "Milestone description",
"type": "string"
},
"due_on": {
"description": "Milestone due date in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ)",
"type": "string"
},
"owner": {
"description": "Repository owner",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"state": {
"description": "Milestone state",
"enum": [
"open",
"closed"
],
"type": "string"
},
"title": {
"description": "Milestone title",
"type": "string"
}
},
"required": [
"owner",
"repo",
"title",
"state"
],
"type": "object"
},
"name": "create_milestone"
}