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
Copy file name to clipboardExpand all lines: README.md
+9-26Lines changed: 9 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -779,20 +779,6 @@ The following sets of tools are available (all are on by default):
779
779
-`startSide`: 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 (string, optional)
780
780
-`subjectType`: The level at which the comment is targeted (string, required)
781
781
782
-
-**create_and_submit_pull_request_review** - Create and submit a pull request review without comments
783
-
-`body`: Review comment text (string, required)
784
-
-`commitID`: SHA of commit to review (string, optional)
785
-
-`event`: Review action to perform (string, required)
786
-
-`owner`: Repository owner (string, required)
787
-
-`pullNumber`: Pull request number (number, required)
"title":"Write operations (create, submit, delete) on pull request reviews.",
4
+
"readOnlyHint":false
5
+
},
6
+
"description":"Create and/or submit, delete pull request review.\n\nAvailable methods:\n- create: Create a new pull request review. If\"event\" parameter is provided, the review is submitted. If\"event\" is omitted, a pending review is created.\n- submit_pending: Submit an existing pending pull request review. This requires that a pending review exists for the current user on the specified pull request. The\"body\" and\"event\" parameters are used when submitting the review.\n- delete_pending: Delete an existing pending pull request review. This requires that a pending review exists for the current user on the specified pull request.\n",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"body": {
10
+
"description":"Review comment text",
11
+
"type":"string"
12
+
},
13
+
"commitID": {
14
+
"description":"SHA of commit to review",
15
+
"type":"string"
16
+
},
17
+
"event": {
18
+
"description":"Review action to perform. If not specified, pending review is created.",
19
+
"enum": [
20
+
"APPROVE",
21
+
"REQUEST_CHANGES",
22
+
"COMMENT"
23
+
],
24
+
"type":"string"
25
+
},
26
+
"method": {
27
+
"description":"The write operation to perform on pull request review.",