@@ -480,6 +480,13 @@ The following sets of tools are available (all are on by default):
480480 - ` owner ` : Repository owner (string, required)
481481 - ` repo ` : Repository name (string, required)
482482
483+ - ** add_sub_issue** - Add sub-issue
484+ - ` issue_number ` : The number of the parent issue (number, required)
485+ - ` owner ` : Repository owner (string, required)
486+ - ` replace_parent ` : When true, replaces the sub-issue's current parent issue (boolean, optional)
487+ - ` repo ` : Repository name (string, required)
488+ - ` sub_issue_id ` : The ID of the sub-issue to add. ID is not the same as issue number (number, required)
489+
483490- ** assign_copilot_to_issue** - Assign Copilot to issue
484491 - ` issueNumber ` : Issue number (number, required)
485492 - ` owner ` : Repository owner (string, required)
@@ -517,6 +524,27 @@ The following sets of tools are available (all are on by default):
517524 - ` sort ` : Sort order (string, optional)
518525 - ` state ` : Filter by state (string, optional)
519526
527+ - ** list_sub_issues** - List sub-issues
528+ - ` issue_number ` : Issue number (number, required)
529+ - ` owner ` : Repository owner (string, required)
530+ - ` page ` : Page number for pagination (default: 1) (number, optional)
531+ - ` per_page ` : Number of results per page (max 100, default: 30) (number, optional)
532+ - ` repo ` : Repository name (string, required)
533+
534+ - ** remove_sub_issue** - Remove sub-issue
535+ - ` issue_number ` : The number of the parent issue (number, required)
536+ - ` owner ` : Repository owner (string, required)
537+ - ` repo ` : Repository name (string, required)
538+ - ` sub_issue_id ` : The ID of the sub-issue to remove. ID is not the same as issue number (number, required)
539+
540+ - ** reprioritize_sub_issue** - Reprioritize sub-issue
541+ - ` after_id ` : The ID of the sub-issue to be prioritized after (either after_id OR before_id should be specified) (number, optional)
542+ - ` before_id ` : The ID of the sub-issue to be prioritized before (either after_id OR before_id should be specified) (number, optional)
543+ - ` issue_number ` : The number of the parent issue (number, required)
544+ - ` owner ` : Repository owner (string, required)
545+ - ` repo ` : Repository name (string, required)
546+ - ` sub_issue_id ` : The ID of the sub-issue to reprioritize. ID is not the same as issue number (number, required)
547+
520548- ** search_issues** - Search issues
521549 - ` order ` : Sort order (string, optional)
522550 - ` owner ` : Optional repository owner. If provided with repo, only notifications for this repository are listed. (string, optional)
0 commit comments