GitHub

pull_request_review_write

Create and/or submit, delete review of a pull request. Available methods: - create: Create a new review of a pull request. If "event" parameter is provided, the review is submitted. If "event" is omitted, a pending review is created. - submit_pending: Submit an existing pending review of a pull request. This requires that a pending review exists for the current user on the specified pull request. The "body" and "event" parameters are used when submitting the review. - delete_pending: Delete an existing pending review of a pull request. This requires that a pending review exists for the current user on the specified pull request.

Remote github

Other tools also called pull_request_review_write? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "body": {
      "type": "string",
      "description": "Review comment text"
    },
    "repo": {
      "type": "string",
      "description": "Repository name"
    },
    "event": {
      "enum": [
        "APPROVE",
        "REQUEST_CHANGES",
        "COMMENT"
      ],
      "type": "string",
      "description": "Review action to perform."
    },
    "owner": {
      "type": "string",
      "description": "Repository owner"
    },
    "method": {
      "enum": [
        "create",
        "submit_pending",
        "delete_pending"
      ],
      "type": "string",
      "description": "The write operation to perform on pull request review."
    },
    "commitID": {
      "type": "string",
      "description": "SHA of commit to review"
    },
    "pullNumber": {
      "type": "number",
      "description": "Pull request number"
    }
  }
}
          

Provider

GitHub →