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: pkg/github/__toolsnaps__/add_comment_to_pending_review.snap
+30-30Lines changed: 30 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -4,69 +4,69 @@
4
4
},
5
5
"description": "Add review 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).",
6
6
"inputSchema": {
7
-
"type": "object",
8
-
"required": [
9
-
"owner",
10
-
"repo",
11
-
"pullNumber",
12
-
"path",
13
-
"body",
14
-
"subjectType"
15
-
],
16
7
"properties": {
17
8
"body": {
18
-
"type": "string",
19
-
"description": "The text of the review comment"
9
+
"description": "The text of the review comment",
10
+
"type": "string"
20
11
},
21
12
"line": {
22
-
"type": "number",
23
-
"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"
13
+
"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",
14
+
"type": "number"
24
15
},
25
16
"owner": {
26
-
"type": "string",
27
-
"description": "Repository owner"
17
+
"description": "Repository owner",
18
+
"type": "string"
28
19
},
29
20
"path": {
30
-
"type": "string",
31
-
"description": "The relative path to the file that necessitates a comment"
21
+
"description": "The relative path to the file that necessitates a comment",
22
+
"type": "string"
32
23
},
33
24
"pullNumber": {
34
-
"type": "number",
35
-
"description": "Pull request number"
25
+
"description": "Pull request number",
26
+
"type": "number"
36
27
},
37
28
"repo": {
38
-
"type": "string",
39
-
"description": "Repository name"
29
+
"description": "Repository name",
30
+
"type": "string"
40
31
},
41
32
"side": {
42
-
"type": "string",
43
33
"description": "The side of the diff to comment on. LEFT indicates the previous state, RIGHT indicates the new state",
44
34
"enum": [
45
35
"LEFT",
46
36
"RIGHT"
47
-
]
37
+
],
38
+
"type": "string"
48
39
},
49
40
"startLine": {
50
-
"type": "number",
51
-
"description": "For multi-line comments, the first line of the range that the comment applies to"
41
+
"description": "For multi-line comments, the first line of the range that the comment applies to",
42
+
"type": "number"
52
43
},
53
44
"startSide": {
54
-
"type": "string",
55
45
"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",
56
46
"enum": [
57
47
"LEFT",
58
48
"RIGHT"
59
-
]
49
+
],
50
+
"type": "string"
60
51
},
61
52
"subjectType": {
62
-
"type": "string",
63
53
"description": "The level at which the comment is targeted",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/assign_copilot_to_issue.snap
+23-23Lines changed: 23 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -4,43 +4,43 @@
4
4
"title": "Assign Copilot to issue"
5
5
},
6
6
"description": "Assign Copilot to a specific issue in a GitHub repository.\n\nThis tool can help with the following outcomes:\n- a Pull Request created with source code changes to resolve the issue\n\n\nMore information can be found at:\n- https://docs.github.com/en/copilot/using-github-copilot/using-copilot-coding-agent-to-work-on-tasks/about-assigning-tasks-to-copilot\n",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/pull_request_review_write.snap
+22-22Lines changed: 22 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -4,53 +4,53 @@
4
4
},
5
5
"description": "Create and/or submit, delete review of a pull request.\n\nAvailable methods:\n- create: Create a new review of a pull request. 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 review of a pull request. 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 review of a pull request. This requires that a pending review exists for the current user on the specified pull request.\n",
6
6
"inputSchema": {
7
-
"type": "object",
8
-
"required": [
9
-
"method",
10
-
"owner",
11
-
"repo",
12
-
"pullNumber"
13
-
],
14
7
"properties": {
15
8
"body": {
16
-
"type": "string",
17
-
"description": "Review comment text"
9
+
"description": "Review comment text",
10
+
"type": "string"
18
11
},
19
12
"commitID": {
20
-
"type": "string",
21
-
"description": "SHA of commit to review"
13
+
"description": "SHA of commit to review",
14
+
"type": "string"
22
15
},
23
16
"event": {
24
-
"type": "string",
25
17
"description": "Review action to perform.",
26
18
"enum": [
27
19
"APPROVE",
28
20
"REQUEST_CHANGES",
29
21
"COMMENT"
30
-
]
22
+
],
23
+
"type": "string"
31
24
},
32
25
"method": {
33
-
"type": "string",
34
26
"description": "The write operation to perform on pull request review.",
0 commit comments