request_changes
Submit feedback and request revisions on Bitbucket pull requests by specifying workspace, repository, and pull request ID, with an optional comment to clarify changes needed.
Instructions
Request changes on a pull request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | Comment explaining requested changes (optional) | |
pull_request_id | Yes | Pull request ID | |
repository | Yes | Repository slug (e.g., "my-repo") | |
workspace | Yes | Bitbucket workspace/project key (e.g., "PROJ") |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Comment explaining requested changes (optional)",
"type": "string"
},
"pull_request_id": {
"description": "Pull request ID",
"type": "number"
},
"repository": {
"description": "Repository slug (e.g., \"my-repo\")",
"type": "string"
},
"workspace": {
"description": "Bitbucket workspace/project key (e.g., \"PROJ\")",
"type": "string"
}
},
"required": [
"workspace",
"repository",
"pull_request_id"
],
"type": "object"
}