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 review comment to the requester's latest pending pull request review",
4
-
"readOnlyHint": false
3
+
"title": "Add review comment to the requester's latest pending pull request review"
5
4
},
6
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).",
7
6
"inputSchema": {
7
+
"type": "object",
8
+
"required": [
9
+
"owner",
10
+
"repo",
11
+
"pullNumber",
12
+
"path",
13
+
"body",
14
+
"subjectType"
15
+
],
8
16
"properties": {
9
17
"body": {
10
-
"description": "The text of the review comment",
11
-
"type": "string"
18
+
"type": "string",
19
+
"description": "The text of the review comment"
12
20
},
13
21
"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"
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"
16
24
},
17
25
"owner": {
18
-
"description": "Repository owner",
19
-
"type": "string"
26
+
"type": "string",
27
+
"description": "Repository owner"
20
28
},
21
29
"path": {
22
-
"description": "The relative path to the file that necessitates a comment",
23
-
"type": "string"
30
+
"type": "string",
31
+
"description": "The relative path to the file that necessitates a comment"
24
32
},
25
33
"pullNumber": {
26
-
"description": "Pull request number",
27
-
"type": "number"
34
+
"type": "number",
35
+
"description": "Pull request number"
28
36
},
29
37
"repo": {
30
-
"description": "Repository name",
31
-
"type": "string"
38
+
"type": "string",
39
+
"description": "Repository name"
32
40
},
33
41
"side": {
42
+
"type": "string",
34
43
"description": "The side of the diff to comment on. LEFT indicates the previous state, RIGHT indicates the new state",
35
44
"enum": [
36
45
"LEFT",
37
46
"RIGHT"
38
-
],
39
-
"type": "string"
47
+
]
40
48
},
41
49
"startLine": {
42
-
"description": "For multi-line comments, the first line of the range that the comment applies to",
43
-
"type": "number"
50
+
"type": "number",
51
+
"description": "For multi-line comments, the first line of the range that the comment applies to"
44
52
},
45
53
"startSide": {
54
+
"type": "string",
46
55
"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
56
"enum": [
48
57
"LEFT",
49
58
"RIGHT"
50
-
],
51
-
"type": "string"
59
+
]
52
60
},
53
61
"subjectType": {
62
+
"type": "string",
54
63
"description": "The level at which the comment is targeted",
"description": "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if user is not asking specifically to add review comments.",
"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",
0 commit comments