PATCH
github_issues_update_comment.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.
Edit an issue comment’s text. This is how an agent corrects or extends something it already posted, rather than posting again.
from charter.packs import github
result = await github.issues_update_comment.ainvoke({"owner": ..., "repo": ..., "commentId": ..., "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. |
commentId * | integer | The unique identifier of the comment — its id, not the issue number it sits on. |
| Field | Type | Description |
|---|---|---|
body * | string | The contents of the comment. |
Was this page helpful?