create_pull_request
Create a pull request in Bitbucket to merge code changes from a source branch to a target branch, with options for description and branch management.
Instructions
Create a pull request in a Bitbucket repository.
Args:
repo_slug: Repository slug (e.g., "anzsic_classifier")
title: PR title
source_branch: Source branch name
destination_branch: Target branch (default: main)
description: PR description in markdown
close_source_branch: Delete source branch after merge (default: True)
Returns:
Created PR info with id, url, and stateInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo_slug | Yes | ||
| title | Yes | ||
| source_branch | Yes | ||
| destination_branch | No | main | |
| description | No | ||
| close_source_branch | No |