bb_create_pull_request
Create a pull request in a Bitbucket repository, specifying source and destination branches, title, and description, with optional source branch closure after merging.
Instructions
Create a new pull request in a Bitbucket repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
close_source_branch | No | Close source branch after merge | |
description | No | Pull request description | |
destination_branch | No | Branch you want to merge into | main |
repo_slug | Yes | Repository slug/name | |
source_branch | Yes | Branch containing your changes | |
title | Yes | Pull request title | |
workspace | No | Repository workspace (defaults to kallows) | kallows |
Input Schema (JSON Schema)
{
"properties": {
"close_source_branch": {
"default": true,
"description": "Close source branch after merge",
"type": "boolean"
},
"description": {
"description": "Pull request description",
"type": "string"
},
"destination_branch": {
"default": "main",
"description": "Branch you want to merge into",
"type": "string"
},
"repo_slug": {
"description": "Repository slug/name",
"type": "string"
},
"source_branch": {
"description": "Branch containing your changes",
"type": "string"
},
"title": {
"description": "Pull request title",
"type": "string"
},
"workspace": {
"default": "kallows",
"description": "Repository workspace (defaults to kallows)",
"type": "string"
}
},
"required": [
"repo_slug",
"title",
"source_branch"
],
"type": "object"
}