PATCH
github_issues_update.py
Requires
repo, read:user.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update an issue. Fields not provided are left unchanged. Set state to ‘closed’ to close it, with state_reason saying why. Note that labels and assignees replace the existing sets rather than adding to them.
from charter.packs import github
result = await github.issues_update.ainvoke({"owner": ..., "repo": ..., "issueNumber": ..., "body": ...})
repo, read:user.| 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. |
| Field | Type | Description |
|---|---|---|
body * | IssueUpdateBody | The fields to change. |
Was this page helpful?