You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"title": "Add comment to the requester's latest pending pull request review",
4
+
"readOnlyHint": false
5
+
},
6
+
"description": "Add a comment to the requester's latest pending pull request review, a pending review needs to already exist to call this (check with the user if not sure).",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"body": {
10
+
"description": "The text of the review comment",
11
+
"type": "string"
12
+
},
13
+
"line": {
14
+
"description": "The line of the blob in the pull request diff that the comment applies to. For multi-line comments, the last line of the range",
15
+
"type": "number"
16
+
},
17
+
"owner": {
18
+
"description": "Repository owner",
19
+
"type": "string"
20
+
},
21
+
"path": {
22
+
"description": "The relative path to the file that necessitates a comment",
23
+
"type": "string"
24
+
},
25
+
"pullNumber": {
26
+
"description": "Pull request number",
27
+
"type": "number"
28
+
},
29
+
"repo": {
30
+
"description": "Repository name",
31
+
"type": "string"
32
+
},
33
+
"side": {
34
+
"description": "The side of the diff to comment on. LEFT indicates the previous state, RIGHT indicates the new state",
35
+
"enum": [
36
+
"LEFT",
37
+
"RIGHT"
38
+
],
39
+
"type": "string"
40
+
},
41
+
"startLine": {
42
+
"description": "For multi-line comments, the first line of the range that the comment applies to",
43
+
"type": "number"
44
+
},
45
+
"startSide": {
46
+
"description": "For multi-line comments, the starting side of the diff that the comment applies to. LEFT indicates the previous state, RIGHT indicates the new state",
47
+
"enum": [
48
+
"LEFT",
49
+
"RIGHT"
50
+
],
51
+
"type": "string"
52
+
},
53
+
"subjectType": {
54
+
"description": "The level at which the comment is targeted",
0 commit comments