Skip to content

Commit f23dfa5

Browse files
committed
Added Snap
1 parent 269e3ec commit f23dfa5

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"annotations": {
3+
"title": "Update a previously added comment to an issue",
4+
"readOnlyHint": false
5+
},
6+
"description": "Update a previously added comment to a specific issue in a GitHub repository.",
7+
"inputSchema": {
8+
"properties": {
9+
"body": {
10+
"description": "Comment content",
11+
"type": "string"
12+
},
13+
"comment_id": {
14+
"description": "ID of the comment to update",
15+
"type": "number"
16+
},
17+
"owner": {
18+
"description": "Repository owner",
19+
"type": "string"
20+
},
21+
"repo": {
22+
"description": "Repository name",
23+
"type": "string"
24+
}
25+
},
26+
"required": [
27+
"comment_id",
28+
"owner",
29+
"repo",
30+
"body"
31+
],
32+
"type": "object"
33+
},
34+
"name": "update_issue_comment"
35+
}

0 commit comments

Comments
 (0)