get-story-branch-name
Generate a valid branch name for a specific Shortcut story by providing its public ID, streamlining version control workflows in project management.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"storyPublicId": {
"description": "The public Id of the story",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId"
],
"type": "object"
}