Skip to content

Commit 8088e60

Browse files
docs: regenerate after merging main
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 6564023 commit 8088e60

1 file changed

Lines changed: 168 additions & 0 deletions

File tree

README.md

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,21 @@ The following sets of tools are available:
829829
- `owner`: Repository owner (string, required)
830830
- `repo`: Repository name (string, required)
831831

832+
- **add_sub_issue** - Add Sub-Issue
833+
- **Required OAuth Scopes**: `repo`
834+
- `issue_number`: The parent issue number (number, required)
835+
- `owner`: Repository owner (username or organization) (string, required)
836+
- `replace_parent`: If true, reparent the sub-issue if it already has a parent (boolean, optional)
837+
- `repo`: Repository name (string, required)
838+
- `sub_issue_id`: The ID of the sub-issue to add. ID is not the same as issue number (number, required)
839+
840+
- **create_issue** - Create Issue
841+
- **Required OAuth Scopes**: `repo`
842+
- `body`: Issue body content (optional) (string, optional)
843+
- `owner`: Repository owner (username or organization) (string, required)
844+
- `repo`: Repository name (string, required)
845+
- `title`: Issue title (string, required)
846+
832847
- **get_label** - Get a specific label from a repository
833848
- **Required OAuth Scopes**: `repo`
834849
- `name`: Label name. (string, required)
@@ -894,6 +909,22 @@ The following sets of tools are available:
894909
- `since`: Filter by date (ISO 8601 timestamp) (string, optional)
895910
- `state`: Filter by state, by default both open and closed issues are returned when not provided (string, optional)
896911

912+
- **remove_sub_issue** - Remove Sub-Issue
913+
- **Required OAuth Scopes**: `repo`
914+
- `issue_number`: The parent issue number (number, required)
915+
- `owner`: Repository owner (username or organization) (string, required)
916+
- `repo`: Repository name (string, required)
917+
- `sub_issue_id`: The ID of the sub-issue to remove. ID is not the same as issue number (number, required)
918+
919+
- **reprioritize_sub_issue** - Reprioritize Sub-Issue
920+
- **Required OAuth Scopes**: `repo`
921+
- `after_id`: The ID of the sub-issue to place this after (either after_id OR before_id should be specified) (number, optional)
922+
- `before_id`: The ID of the sub-issue to place this before (either after_id OR before_id should be specified) (number, optional)
923+
- `issue_number`: The parent issue number (number, required)
924+
- `owner`: Repository owner (username or organization) (string, required)
925+
- `repo`: Repository name (string, required)
926+
- `sub_issue_id`: The ID of the sub-issue to reorder. ID is not the same as issue number (number, required)
927+
897928
- **search_issues** - Search issues
898929
- **Required OAuth Scopes**: `repo`
899930
- `order`: Sort order (string, optional)
@@ -904,6 +935,13 @@ The following sets of tools are available:
904935
- `repo`: Optional repository name. If provided with owner, only issues for this repository are listed. (string, optional)
905936
- `sort`: Sort field by number of matches of categories, defaults to best match (string, optional)
906937

938+
- **set_issue_fields** - Set Issue Fields
939+
- **Required OAuth Scopes**: `repo`
940+
- `fields`: Array of issue field values to set. Each element must have a 'field_id' (string, the GraphQL node ID of the field) and exactly one value field: 'text_value' for text fields, 'number_value' for number fields, 'date_value' (ISO 8601 date string) for date fields, or 'single_select_option_id' (the GraphQL node ID of the option) for single select fields. Set 'delete' to true to remove a field value. (object[], required)
941+
- `issue_number`: The issue number to update (number, required)
942+
- `owner`: Repository owner (username or organization) (string, required)
943+
- `repo`: Repository name (string, required)
944+
907945
- **sub_issue_write** - Change sub-issue
908946
- **Required OAuth Scopes**: `repo`
909947
- `after_id`: The ID of the sub-issue to be prioritized after (either after_id OR before_id should be specified) (number, optional)
@@ -920,6 +958,57 @@ The following sets of tools are available:
920958
- `repo`: Repository name (string, required)
921959
- `sub_issue_id`: The ID of the sub-issue to add. ID is not the same as issue number (number, required)
922960

961+
- **update_issue_assignees** - Update Issue Assignees
962+
- **Required OAuth Scopes**: `repo`
963+
- `assignees`: GitHub usernames to assign to this issue (string[], required)
964+
- `issue_number`: The issue number to update (number, required)
965+
- `owner`: Repository owner (username or organization) (string, required)
966+
- `repo`: Repository name (string, required)
967+
968+
- **update_issue_body** - Update Issue Body
969+
- **Required OAuth Scopes**: `repo`
970+
- `body`: The new body content for the issue (string, required)
971+
- `issue_number`: The issue number to update (number, required)
972+
- `owner`: Repository owner (username or organization) (string, required)
973+
- `repo`: Repository name (string, required)
974+
975+
- **update_issue_labels** - Update Issue Labels
976+
- **Required OAuth Scopes**: `repo`
977+
- `issue_number`: The issue number to update (number, required)
978+
- `labels`: Labels to apply to this issue. ([], required)
979+
- `owner`: Repository owner (username or organization) (string, required)
980+
- `repo`: Repository name (string, required)
981+
982+
- **update_issue_milestone** - Update Issue Milestone
983+
- **Required OAuth Scopes**: `repo`
984+
- `issue_number`: The issue number to update (number, required)
985+
- `milestone`: The milestone number to set on the issue (integer, required)
986+
- `owner`: Repository owner (username or organization) (string, required)
987+
- `repo`: Repository name (string, required)
988+
989+
- **update_issue_state** - Update Issue State
990+
- **Required OAuth Scopes**: `repo`
991+
- `issue_number`: The issue number to update (number, required)
992+
- `owner`: Repository owner (username or organization) (string, required)
993+
- `repo`: Repository name (string, required)
994+
- `state`: The new state for the issue (string, required)
995+
- `state_reason`: The reason for the state change (only for closed state) (string, optional)
996+
997+
- **update_issue_title** - Update Issue Title
998+
- **Required OAuth Scopes**: `repo`
999+
- `issue_number`: The issue number to update (number, required)
1000+
- `owner`: Repository owner (username or organization) (string, required)
1001+
- `repo`: Repository name (string, required)
1002+
- `title`: The new title for the issue (string, required)
1003+
1004+
- **update_issue_type** - Update Issue Type
1005+
- **Required OAuth Scopes**: `repo`
1006+
- `issue_number`: The issue number to update (number, required)
1007+
- `issue_type`: The issue type to set (string, required)
1008+
- `owner`: Repository owner (username or organization) (string, required)
1009+
- `rationale`: One concise sentence explaining what specifically about the issue led you to choose this type. State the concrete signal (e.g. 'Reports a crash when saving' → bug, 'Asks for dark mode support' → feature). (string, optional)
1010+
- `repo`: Repository name (string, required)
1011+
9231012
</details>
9241013

9251014
<details>
@@ -1072,6 +1161,19 @@ The following sets of tools are available:
10721161
- `startSide`: 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 (string, optional)
10731162
- `subjectType`: The level at which the comment is targeted (string, required)
10741163

1164+
- **add_pull_request_review_comment** - Add Pull Request Review Comment
1165+
- **Required OAuth Scopes**: `repo`
1166+
- `body`: The comment body (string, required)
1167+
- `line`: The line number in the diff to comment on (optional) (number, optional)
1168+
- `owner`: Repository owner (username or organization) (string, required)
1169+
- `path`: The relative path of the file to comment on (string, required)
1170+
- `pullNumber`: The pull request number (number, required)
1171+
- `repo`: Repository name (string, required)
1172+
- `side`: The side of the diff to comment on (optional) (string, optional)
1173+
- `startLine`: The start line of a multi-line comment (optional) (number, optional)
1174+
- `startSide`: The start side of a multi-line comment (optional) (string, optional)
1175+
- `subjectType`: The subject type of the comment (string, required)
1176+
10751177
- **add_reply_to_pull_request_comment** - Add reply to pull request comment
10761178
- **Required OAuth Scopes**: `repo`
10771179
- `body`: The text of the reply (string, required)
@@ -1091,6 +1193,21 @@ The following sets of tools are available:
10911193
- `repo`: Repository name (string, required)
10921194
- `title`: PR title (string, required)
10931195

1196+
- **create_pull_request_review** - Create Pull Request Review
1197+
- **Required OAuth Scopes**: `repo`
1198+
- `body`: The review body text (optional) (string, optional)
1199+
- `commitID`: The SHA of the commit to review (optional, defaults to latest) (string, optional)
1200+
- `event`: The review action to perform. If omitted, creates a pending review. (string, optional)
1201+
- `owner`: Repository owner (username or organization) (string, required)
1202+
- `pullNumber`: The pull request number (number, required)
1203+
- `repo`: Repository name (string, required)
1204+
1205+
- **delete_pending_pull_request_review** - Delete Pending Pull Request Review
1206+
- **Required OAuth Scopes**: `repo`
1207+
- `owner`: Repository owner (username or organization) (string, required)
1208+
- `pullNumber`: The pull request number (number, required)
1209+
- `repo`: Repository name (string, required)
1210+
10941211
- **list_pull_requests** - List pull requests
10951212
- **Required OAuth Scopes**: `repo`
10961213
- `base`: Filter by base branch (string, optional)
@@ -1143,6 +1260,17 @@ The following sets of tools are available:
11431260
- `repo`: Repository name (string, required)
11441261
- `threadId`: The node ID of the review thread (e.g., PRRT_kwDOxxx). Required for resolve_thread and unresolve_thread methods. Get thread IDs from pull_request_read with method get_review_comments. (string, optional)
11451262

1263+
- **request_pull_request_reviewers** - Request Pull Request Reviewers
1264+
- **Required OAuth Scopes**: `repo`
1265+
- `owner`: Repository owner (username or organization) (string, required)
1266+
- `pullNumber`: The pull request number (number, required)
1267+
- `repo`: Repository name (string, required)
1268+
- `reviewers`: GitHub usernames to request reviews from (string[], required)
1269+
1270+
- **resolve_review_thread** - Resolve Review Thread
1271+
- **Required OAuth Scopes**: `repo`
1272+
- `threadID`: The node ID of the review thread to resolve (e.g., PRRT_kwDOxxx) (string, required)
1273+
11461274
- **search_pull_requests** - Search pull requests
11471275
- **Required OAuth Scopes**: `repo`
11481276
- `order`: Sort order (string, optional)
@@ -1153,6 +1281,18 @@ The following sets of tools are available:
11531281
- `repo`: Optional repository name. If provided with owner, only pull requests for this repository are listed. (string, optional)
11541282
- `sort`: Sort field by number of matches of categories, defaults to best match (string, optional)
11551283

1284+
- **submit_pending_pull_request_review** - Submit Pending Pull Request Review
1285+
- **Required OAuth Scopes**: `repo`
1286+
- `body`: The review body text (optional) (string, optional)
1287+
- `event`: The review action to perform (string, required)
1288+
- `owner`: Repository owner (username or organization) (string, required)
1289+
- `pullNumber`: The pull request number (number, required)
1290+
- `repo`: Repository name (string, required)
1291+
1292+
- **unresolve_review_thread** - Unresolve Review Thread
1293+
- **Required OAuth Scopes**: `repo`
1294+
- `threadID`: The node ID of the review thread to unresolve (e.g., PRRT_kwDOxxx) (string, required)
1295+
11561296
- **update_pull_request** - Edit pull request
11571297
- **Required OAuth Scopes**: `repo`
11581298
- `base`: New base branch name (string, optional)
@@ -1166,13 +1306,41 @@ The following sets of tools are available:
11661306
- `state`: New state (string, optional)
11671307
- `title`: New title (string, optional)
11681308

1309+
- **update_pull_request_body** - Update Pull Request Body
1310+
- **Required OAuth Scopes**: `repo`
1311+
- `body`: The new body content for the pull request (string, required)
1312+
- `owner`: Repository owner (username or organization) (string, required)
1313+
- `pullNumber`: The pull request number (number, required)
1314+
- `repo`: Repository name (string, required)
1315+
11691316
- **update_pull_request_branch** - Update pull request branch
11701317
- **Required OAuth Scopes**: `repo`
11711318
- `expectedHeadSha`: The expected SHA of the pull request's HEAD ref (string, optional)
11721319
- `owner`: Repository owner (string, required)
11731320
- `pullNumber`: Pull request number (number, required)
11741321
- `repo`: Repository name (string, required)
11751322

1323+
- **update_pull_request_draft_state** - Update Pull Request Draft State
1324+
- **Required OAuth Scopes**: `repo`
1325+
- `draft`: Set to true to convert to draft, false to mark as ready for review (boolean, required)
1326+
- `owner`: Repository owner (username or organization) (string, required)
1327+
- `pullNumber`: The pull request number (number, required)
1328+
- `repo`: Repository name (string, required)
1329+
1330+
- **update_pull_request_state** - Update Pull Request State
1331+
- **Required OAuth Scopes**: `repo`
1332+
- `owner`: Repository owner (username or organization) (string, required)
1333+
- `pullNumber`: The pull request number (number, required)
1334+
- `repo`: Repository name (string, required)
1335+
- `state`: The new state for the pull request (string, required)
1336+
1337+
- **update_pull_request_title** - Update Pull Request Title
1338+
- **Required OAuth Scopes**: `repo`
1339+
- `owner`: Repository owner (username or organization) (string, required)
1340+
- `pullNumber`: The pull request number (number, required)
1341+
- `repo`: Repository name (string, required)
1342+
- `title`: The new title for the pull request (string, required)
1343+
11761344
</details>
11771345

11781346
<details>

0 commit comments

Comments
 (0)