PUT
github_pulls_dismiss_review.py
from charter.packs import github
result = await github.pulls_dismiss_review.ainvoke({"owner": ..., "repo": ..., "pullNumber": ..., "reviewId": ..., "message": ...})
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 |
|---|---|---|
message * | string | The message for the pull request review dismissal. |