Github Project Manager

remove_requested_reviewers

Remove requested reviewers from a pull request

Input Schema

NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
pull_numberYesPull request number
repoYesRepository name
reviewersYesUsernames of people to remove from the review request
team_reviewersNoNames of teams to remove from the review request

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "owner": { "description": "Repository owner (username or organization)", "type": "string" }, "pull_number": { "description": "Pull request number", "type": "number" }, "repo": { "description": "Repository name", "type": "string" }, "reviewers": { "description": "Usernames of people to remove from the review request", "items": { "type": "string" }, "type": "array" }, "team_reviewers": { "description": "Names of teams to remove from the review request", "items": { "type": "string" }, "type": "array" } }, "required": [ "owner", "repo", "pull_number", "reviewers" ], "type": "object" }