POST
github_issues_create_comment.py
from charter.packs import github
result = await github.issues_create_comment.ainvoke({"owner": ..., "repo": ..., "issueNumber": ..., "body": ...})
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. A pull request number works here too — GitHub treats pull requests as issues for commenting. |
Body
| Field | Type | Description |
|---|---|---|
body * | CommentCreateBody | The comment to post. |