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
+17Lines changed: 17 additions & 0 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
@@ -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)
"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