create_pull_request
Create a new pull request in Bitbucket by specifying repository, title, source branch, and optional destination branch and description to facilitate code review and merging.
Instructions
Create a new pull request.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The description of the pull request. | |
destination_branch | No | The destination branch of the pull request. | |
repository_name | Yes | Name of the repository (repo slug) | |
source_branch | Yes | The source branch of the pull request. | |
title | Yes | The title of the pull request. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The description of the pull request.",
"type": "string"
},
"destination_branch": {
"description": "The destination branch of the pull request.",
"type": "string"
},
"repository_name": {
"description": "Name of the repository (repo slug)",
"type": "string"
},
"source_branch": {
"description": "The source branch of the pull request.",
"type": "string"
},
"title": {
"description": "The title of the pull request.",
"type": "string"
}
},
"required": [
"repository_name",
"title",
"source_branch"
],
"type": "object"
}