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
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -580,10 +580,10 @@ The following sets of tools are available (all are on by default):
580
580
-`issue_number`: The number of the issue (number, required)
581
581
-`method`: The read operation to perform on a single issue.
582
582
Options are:
583
-
1.'get' - get issue details
584
-
2.'get_comments' - get issue comments
585
-
3.'get_sub_issues' - list sub-issues of the issue
586
-
4.'get_labels' - list labels assigned to the issue
583
+
1. get - Get details of a specific issue.
584
+
2. get_comments - Get issue comments.
585
+
3. get_sub_issues - Get sub-issues of the issue.
586
+
4. get_labels - Get labels assigned to the issue.
587
587
(string, required)
588
588
-`owner`: The owner of the repository (string, required)
589
589
-`page`: Page number for pagination (min 1) (number, optional)
@@ -836,8 +836,9 @@ Possible options:
836
836
2. get_diff - Get the diff of a pull request.
837
837
3. get_status - Get status of a head commit in a pull request. This reflects status of builds and checks.
838
838
4. get_files - Get the list of files changed in a pull request. Use with pagination parameters to control the number of results returned.
839
-
5. get_review_comments - Get the review comments on a pull request. They are comments made on a portion of the unified diff during a pull request review. These are different from commit comments and issue comments in a pull request. Use with pagination parameters to control the number of results returned.
839
+
5. get_review_comments - Get the review comments on a pull request. They are comments made on a portion of the unified diff during a pull request review. Use with pagination parameters to control the number of results returned.
840
840
6. get_reviews - Get the reviews on a pull request. When asked for review comments, use get_review_comments method.
841
+
7. get_comments - Get comments on a pull request. Use this if user doesn't specifically want review comments. Use with pagination parameters to control the number of results returned.
841
842
(string, required)
842
843
-`owner`: Repository owner (string, required)
843
844
-`page`: Page number for pagination (min 1) (number, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/add_issue_comment.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
"title": "Add comment to issue",
4
4
"readOnlyHint": false
5
5
},
6
-
"description": "Add a comment to a specific issue in a GitHub repository.",
6
+
"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.",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/issue_read.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
"type": "number"
12
12
},
13
13
"method": {
14
-
"description": "The read operation to perform on a single issue. \nOptions are: \n1. 'get' - get issue details\n2. 'get_comments' - get issue comments\n3. 'get_sub_issues' - list sub-issues of the issue\n4. 'get_labels' - list labels assigned to the issue\n",
14
+
"description": "The read operation to perform on a single issue. \nOptions are: \n1. get - Get details of a specific issue.\n2. get_comments - Get issue comments.\n3. get_sub_issues - Get sub-issues of the issue.\n4. get_labels - Get labels assigned to the issue.\n",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/pull_request_read.snap
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,15 @@
7
7
"inputSchema": {
8
8
"properties": {
9
9
"method": {
10
-
"description": "Action to specify what pull request data needs to be retrieved from GitHub. \nPossible options: \n 1. get - Get details of a specific pull request.\n 2. get_diff - Get the diff of a pull request.\n 3. get_status - Get status of a head commit in a pull request. This reflects status of builds and checks.\n 4. get_files - Get the list of files changed in a pull request. Use with pagination parameters to control the number of results returned.\n 5. get_review_comments - Get the review comments on a pull request. Use with pagination parameters to control the number of results returned.\n 6. get_reviews - Get the reviews on a pull request. When asked for review comments, use get_review_comments method.\n",
10
+
"description": "Action to specify what pull request data needs to be retrieved from GitHub. \nPossible options: \n 1. get - Get details of a specific pull request.\n 2. get_diff - Get the diff of a pull request.\n 3. get_status - Get status of a head commit in a pull request. This reflects status of builds and checks.\n 4. get_files - Get the list of files changed in a pull request. Use with pagination parameters to control the number of results returned.\n 5. get_review_comments - Get the review comments on a pull request. They are comments made on a portion of the unified diff during a pull request review. Use with pagination parameters to control the number of results returned.\n 6. get_reviews - Get the reviews on a pull request. When asked for review comments, use get_review_comments method.\n 7. get_comments - Get comments on a pull request. Use this if user doesn't specifically want review comments. Use with pagination parameters to control the number of results returned.\n",
0 commit comments