DELETE
github_pulls_remove_requested_reviewers.py
from charter.packs import github
result = await github.pulls_remove_requested_reviewers.ainvoke({"owner": ..., "repo": ..., "pullNumber": ..., "reviewers": ...})
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. |
Body
| Field | Type | Description |
|---|---|---|
reviewers * | string[] | An array of user logins that will be removed. Required by GitHub even when removing teams only — pass an empty list for that case. |
teamReviewers | string[] | An array of team slugs that will be removed. |