POST
github_issues_add_labels.py
from charter.packs import github
result = await github.issues_add_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 add to the issue’s existing labels. Each must already exist on the repository. min 1 items |