Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,12 @@ The following sets of tools are available (all are on by default):
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

- **add_issue_labels** - Add issue labels
- `issue_number`: Issue number (number, required)
- `labels`: Label names to add to the issue (string[], required)
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

- **add_sub_issue** - Add sub-issue
- `issue_number`: The number of the parent issue (number, required)
- `owner`: Repository owner (string, required)
Expand All @@ -532,6 +538,18 @@ The following sets of tools are available (all are on by default):
- `title`: Issue title (string, required)
- `type`: Type of this issue (string, optional)

- **create_label** - Create label
- `color`: Label color as a 6-character hex code without '#', e.g. 'f29513' (string, required)
- `description`: Label description (string, optional)
- `name`: Name of the label to create (string, required)
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

- **delete_label** - Delete label
- `name`: Name of the label to delete (string, required)
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

- **get_issue** - Get issue details
- `issue_number`: The number of the issue (number, required)
- `owner`: The owner of the repository (string, required)
Expand All @@ -544,6 +562,16 @@ The following sets of tools are available (all are on by default):
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
- `repo`: Repository name (string, required)

- **get_labels** - Get/List labels
- `name`: Name of the label to retrieve. If not provided, lists all labels in the repository. (string, optional)
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

- **list_issue_labels** - List issue labels
- `issue_number`: Issue number (number, required)
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

- **list_issue_types** - List available issue types
- `owner`: The organization owner of the repository (string, required)

Expand All @@ -565,6 +593,12 @@ The following sets of tools are available (all are on by default):
- `per_page`: Number of results per page (max 100, default: 30) (number, optional)
- `repo`: Repository name (string, required)

- **remove_issue_labels** - Remove issue labels
- `issue_number`: Issue number (number, required)
- `labels`: Label names to remove from the issue (string[], required)
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

- **remove_sub_issue** - Remove sub-issue
- `issue_number`: The number of the parent issue (number, required)
- `owner`: Repository owner (string, required)
Expand Down Expand Up @@ -602,6 +636,14 @@ The following sets of tools are available (all are on by default):
- `title`: New title (string, optional)
- `type`: New issue type (string, optional)

- **update_label** - Update label
- `color`: New label color as a 6-character hex code without '#', e.g. 'f29513' (string, optional)
- `description`: New label description (string, optional)
- `name`: Name of the existing label to update (string, required)
- `new_name`: New name for the label (string, optional)
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

</details>

<details>
Expand Down
Loading
Loading