get_branch_merge_requests
Retrieve all merge requests associated with a specific branch to track development progress and review pending code changes.
Instructions
Get all merge requests for a specific branch
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| branch_name | Yes | Name of the branch |
Input Schema (JSON Schema)
{
"properties": {
"branch_name": {
"description": "Name of the branch",
"type": "string"
}
},
"required": [
"branch_name"
],
"type": "object"
}