gitlab_list_branches
Retrieve a list of branches for a specified GitLab project by providing the project ID and optional search criteria.
Instructions
List branches of a GitLab project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The ID or URL-encoded path of the project | |
search | No | Search branches by name |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
},
"search": {
"description": "Search branches by name",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}