forked from github/github-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreply_to_review_comment.snap
More file actions
40 lines (40 loc) · 1.02 KB
/
reply_to_review_comment.snap
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"annotations": {
"title": "Reply to a review comment",
"readOnlyHint": false
},
"description": "Reply to a review comment on a pull request. Use this to respond directly within pull request review comment threads, maintaining conversation context at specific code locations.",
"inputSchema": {
"properties": {
"body": {
"description": "Reply text supporting GitHub-flavored Markdown",
"type": "string"
},
"comment_id": {
"description": "Review comment ID from pull_request_read",
"type": "number"
},
"owner": {
"description": "Repository owner",
"type": "string"
},
"pull_number": {
"description": "Pull request number",
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"pull_number",
"comment_id",
"body"
],
"type": "object"
},
"name": "reply_to_review_comment"
}