DELETE
github_pulls_delete_pending_review.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.
Discard a review that was never submitted. Only a pending review can be deleted; a submitted one is dismissed instead.
from charter.packs import github
result = await github.pulls_delete_pending_review.ainvoke({"owner": ..., "repo": ..., "pullNumber": ..., "reviewId": ...})
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. |
pullNumber * | integer | The number that identifies the pull request. |
reviewId * | integer | The unique identifier of the review. |
Was this page helpful?