forked from github/github-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate_label.snap
More file actions
41 lines (41 loc) · 982 Bytes
/
update_label.snap
File metadata and controls
41 lines (41 loc) · 982 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": {
"title": "Update a label in a repository."
},
"description": "Update a label in a repository.",
"inputSchema": {
"type": "object",
"properties": {
"color": {
"type": "string",
"description": "Label color as 6-character hex code without '#' prefix (optional)."
},
"description": {
"type": "string",
"description": "Label description text (optional)."
},
"name": {
"type": "string",
"description": "Label name to update."
},
"new_name": {
"type": "string",
"description": "New name for the label (optional)."
},
"owner": {
"type": "string",
"description": "Repository owner (username or organization name)"
},
"repo": {
"type": "string",
"description": "Repository name"
}
},
"required": [
"owner",
"repo",
"name"
]
},
"name": "update_label"
}