get-story-branch-name
Generate valid Git branch names from Shortcut story IDs to maintain consistent naming conventions in development workflows.
Instructions
Get a valid branch name for a specific story.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| storyPublicId | Yes | The public Id of the story |
Input Schema (JSON Schema)
{
"properties": {
"storyPublicId": {
"description": "The public Id of the story",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId"
],
"type": "object"
}