get_label | SELECT | name, owner, repo | Gets a label using the given name. |
list_labels_for_milestone | SELECT | milestone_number, owner, repo | Lists labels for issues in a milestone. |
list_labels_for_repo | SELECT | owner, repo | Lists all labels for a repository. |
list_labels_on_issue | SELECT | issue_number, owner, repo | Lists all labels for an issue. |
add_labels | INSERT | issue_number, owner, repo | Adds labels to an issue. If you provide an empty array of labels, all labels are removed from the issue. |
create_label | INSERT | owner, repo, data__name | Creates a label for the specified repository with the given name and color. The name and color parameters are required. The color must be a valid hexadecimal color code. |
delete_label | DELETE | name, owner, repo | Deletes a label using the given label name. |
remove_all_labels | DELETE | issue_number, owner, repo | Removes all labels from an issue. |
remove_label | DELETE | issue_number, name, owner, repo | Removes the specified label from the issue, and returns the remaining labels on the issue. This endpoint returns a 404 Not Found status if the label does not exist. |
set_labels | EXEC | issue_number, owner, repo | Removes any previous labels and sets the new labels for an issue. |
update_label | EXEC | name, owner, repo | Updates a label using the given label name. |