@@ -484,21 +484,21 @@ The following sets of tools are available (all are on by default):
484484 - ` repo ` : Repository name (string, required)
485485
486486- ** get_discussion_comments** - Get discussion comments
487+ - ` after ` : Cursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs. (string, optional)
487488 - ` discussionNumber ` : Discussion Number (number, required)
488489 - ` owner ` : Repository owner (string, required)
490+ - ` perPage ` : Results per page for pagination (min 1, max 100) (number, optional)
489491 - ` repo ` : Repository name (string, required)
490492
491493- ** list_discussion_categories** - List discussion categories
492- - ` after ` : Cursor for pagination, use the 'after' field from the previous response (string, optional)
493- - ` before ` : Cursor for pagination, use the 'before' field from the previous response (string, optional)
494- - ` first ` : Number of categories to return per page (min 1, max 100) (number, optional)
495- - ` last ` : Number of categories to return from the end (min 1, max 100) (number, optional)
496494 - ` owner ` : Repository owner (string, required)
497495 - ` repo ` : Repository name (string, required)
498496
499497- ** list_discussions** - List discussions
498+ - ` after ` : Cursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs. (string, optional)
500499 - ` category ` : Optional filter by discussion category ID. If provided, only discussions with this category are listed. (string, optional)
501500 - ` owner ` : Repository owner (string, required)
501+ - ` perPage ` : Results per page for pagination (min 1, max 100) (number, optional)
502502 - ` repo ` : Repository name (string, required)
503503
504504</details >
@@ -513,6 +513,13 @@ The following sets of tools are available (all are on by default):
513513 - ` owner ` : Repository owner (string, required)
514514 - ` repo ` : Repository name (string, required)
515515
516+ - ** add_sub_issue** - Add sub-issue
517+ - ` issue_number ` : The number of the parent issue (number, required)
518+ - ` owner ` : Repository owner (string, required)
519+ - ` replace_parent ` : When true, replaces the sub-issue's current parent issue (boolean, optional)
520+ - ` repo ` : Repository name (string, required)
521+ - ` sub_issue_id ` : The ID of the sub-issue to add. ID is not the same as issue number (number, required)
522+
516523- ** assign_copilot_to_issue** - Assign Copilot to issue
517524 - ` issueNumber ` : Issue number (number, required)
518525 - ` owner ` : Repository owner (string, required)
@@ -550,6 +557,27 @@ The following sets of tools are available (all are on by default):
550557 - ` sort ` : Sort order (string, optional)
551558 - ` state ` : Filter by state (string, optional)
552559
560+ - ** list_sub_issues** - List sub-issues
561+ - ` issue_number ` : Issue number (number, required)
562+ - ` owner ` : Repository owner (string, required)
563+ - ` page ` : Page number for pagination (default: 1) (number, optional)
564+ - ` per_page ` : Number of results per page (max 100, default: 30) (number, optional)
565+ - ` repo ` : Repository name (string, required)
566+
567+ - ** remove_sub_issue** - Remove sub-issue
568+ - ` issue_number ` : The number of the parent issue (number, required)
569+ - ` owner ` : Repository owner (string, required)
570+ - ` repo ` : Repository name (string, required)
571+ - ` sub_issue_id ` : The ID of the sub-issue to remove. ID is not the same as issue number (number, required)
572+
573+ - ** reprioritize_sub_issue** - Reprioritize sub-issue
574+ - ` after_id ` : The ID of the sub-issue to be prioritized after (either after_id OR before_id should be specified) (number, optional)
575+ - ` before_id ` : The ID of the sub-issue to be prioritized before (either after_id OR before_id should be specified) (number, optional)
576+ - ` issue_number ` : The number of the parent issue (number, required)
577+ - ` owner ` : Repository owner (string, required)
578+ - ` repo ` : Repository name (string, required)
579+ - ` sub_issue_id ` : The ID of the sub-issue to reprioritize. ID is not the same as issue number (number, required)
580+
553581- ** search_issues** - Search issues
554582 - ` order ` : Sort order (string, optional)
555583 - ` owner ` : Optional repository owner. If provided with repo, only notifications for this repository are listed. (string, optional)
0 commit comments