list_most_recently_checked_out_branches
Track the latest branch activity in your project by listing the n most recently checked out branches. Simply input the project name and desired count to retrieve updated branch data efficiently.
Instructions
List the n most recently checked out branches in the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
n | No | ||
project_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"n": {
"default": 20,
"maximum": 50,
"minimum": 20,
"title": "N",
"type": "integer"
},
"project_name": {
"title": "Project Name",
"type": "string"
}
},
"required": [
"project_name"
],
"title": "list_most_recently_checked_out_branchesArguments",
"type": "object"
}