POST
github_pulls_submit_review.py
from charter.packs import github
result = await github.pulls_submit_review.ainvoke({"owner": ..., "repo": ..., "pullNumber": ..., "reviewId": ..., "event": ...})
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. |
pullNumber * | integer | The number that identifies the pull request. |
reviewId * | integer | The unique identifier of the review. |
Body
| Field | Type | Description |
|---|---|---|
event * | ReviewEvent | The review action to perform. GitHub: leaving this blank returns 422 and leaves the review PENDING. |
body | string | The body text of the pull request review. |