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
+22-5Lines changed: 22 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -591,12 +591,14 @@ The following sets of tools are available (all are on by default):
591
591
-**update_issue** - Edit issue
592
592
-`assignees`: New assignees (string[], optional)
593
593
-`body`: New description (string, optional)
594
+
-`duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
594
595
-`issue_number`: Issue number to update (number, required)
595
596
-`labels`: New labels (string[], optional)
596
597
-`milestone`: New milestone number (number, optional)
597
598
-`owner`: Repository owner (string, required)
598
599
-`repo`: Repository name (string, required)
599
600
-`state`: New state (string, optional)
601
+
-`state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
600
602
-`title`: New title (string, optional)
601
603
-`type`: New issue type (string, optional)
602
604
@@ -701,11 +703,6 @@ The following sets of tools are available (all are on by default):
701
703
-`pullNumber`: Pull request number (number, required)
702
704
-`repo`: Repository name (string, required)
703
705
704
-
-**get_pull_request_comments** - Get pull request comments
705
-
-`owner`: Repository owner (string, required)
706
-
-`pullNumber`: Pull request number (number, required)
707
-
-`repo`: Repository name (string, required)
708
-
709
706
-**get_pull_request_diff** - Get pull request diff
710
707
-`owner`: Repository owner (string, required)
711
708
-`pullNumber`: Pull request number (number, required)
@@ -718,6 +715,11 @@ The following sets of tools are available (all are on by default):
718
715
-`pullNumber`: Pull request number (number, required)
719
716
-`repo`: Repository name (string, required)
720
717
718
+
-**get_pull_request_review_comments** - Get pull request review comments
719
+
-`owner`: Repository owner (string, required)
720
+
-`pullNumber`: Pull request number (number, required)
721
+
-`repo`: Repository name (string, required)
722
+
721
723
-**get_pull_request_reviews** - Get pull request reviews
722
724
-`owner`: Repository owner (string, required)
723
725
-`pullNumber`: Pull request number (number, required)
@@ -875,6 +877,13 @@ The following sets of tools are available (all are on by default):
875
877
-`perPage`: Results per page for pagination (min 1, max 100) (number, optional)
876
878
-`repo`: Repository name (string, required)
877
879
880
+
-**list_starred_repositories** - List starred repositories
881
+
-`direction`: The direction to sort the results by. (string, optional)
882
+
-`page`: Page number for pagination (min 1) (number, optional)
883
+
-`perPage`: Results per page for pagination (min 1, max 100) (number, optional)
884
+
-`sort`: How to sort the results. Can be either 'created' (when the repository was starred) or 'updated' (when the repository was last pushed to). (string, optional)
885
+
-`username`: Username to list starred repositories for. Defaults to the authenticated user. (string, optional)
886
+
878
887
-**list_tags** - List tags
879
888
-`owner`: Repository owner (string, required)
880
889
-`page`: Page number for pagination (min 1) (number, optional)
@@ -901,6 +910,14 @@ The following sets of tools are available (all are on by default):
901
910
-`perPage`: Results per page for pagination (min 1, max 100) (number, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/get_pull_request_review_comments.snap
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
{
2
2
"annotations": {
3
-
"title": "Get pull request comments",
3
+
"title": "Get pull request review comments",
4
4
"readOnlyHint": true
5
5
},
6
-
"description": "Get comments for a specific pull request.",
6
+
"description": "Get pull request review comments. 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.",
"description": "The direction to sort the results by.",
11
+
"enum": [
12
+
"asc",
13
+
"desc"
14
+
],
15
+
"type": "string"
16
+
},
17
+
"page": {
18
+
"description": "Page number for pagination (min 1)",
19
+
"minimum": 1,
20
+
"type": "number"
21
+
},
22
+
"perPage": {
23
+
"description": "Results per page for pagination (min 1, max 100)",
24
+
"maximum": 100,
25
+
"minimum": 1,
26
+
"type": "number"
27
+
},
28
+
"sort": {
29
+
"description": "How to sort the results. Can be either 'created' (when the repository was starred) or 'updated' (when the repository was last pushed to).",
30
+
"enum": [
31
+
"created",
32
+
"updated"
33
+
],
34
+
"type": "string"
35
+
},
36
+
"username": {
37
+
"description": "Username to list starred repositories for. Defaults to the authenticated user.",
0 commit comments