-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathsubmit_pending_pull_request_review.snap
More file actions
44 lines (44 loc) · 1.16 KB
/
submit_pending_pull_request_review.snap
File metadata and controls
44 lines (44 loc) · 1.16 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
41
42
43
44
{
"annotations": {
"title": "Submit the requester's latest pending pull request review",
"readOnlyHint": false
},
"description": "Submit the requester's latest pending pull request review, normally this is a final step after creating a pending review, adding comments first, unless you know that the user already did the first two steps, you should check before calling this.",
"inputSchema": {
"properties": {
"body": {
"description": "The text of the review comment",
"type": "string"
},
"event": {
"description": "The event to perform",
"enum": [
"APPROVE",
"REQUEST_CHANGES",
"COMMENT"
],
"type": "string"
},
"owner": {
"description": "Repository owner",
"type": "string"
},
"pullNumber": {
"description": "Pull request number",
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"pullNumber",
"event"
],
"type": "object"
},
"name": "submit_pending_pull_request_review"
}