PUT
github_issues_set_labels.py
from charter.packs import github
result = await github.issues_set_labels.ainvoke({"owner": ..., "repo": ..., "issueNumber": ..., "labels": ...})
Requires
repo, read:user.Path parameters
| Field | Type | Description |
|---|---|---|
owner * | string | The account owner of the repository. The name is not case sensitive. |
repo * | string | The name of the repository without the .git extension. The name is not case sensitive. |
issueNumber * | integer | The number that identifies the issue. |
Body
| Field | Type | Description |
|---|---|---|
labels * | string[] | The names of the labels to set for the issue. These replace any existing labels. Pass an empty array to remove all labels. |