create_branch_deployment
Deploys specified releases to a designated branch by providing the branch ID and release UUIDs, enabling direct management of Storyblok pipeline stages. Simplifies branch-specific deployment processes.
Instructions
Triggers a deployment of specified releases to a given branch (pipeline stage).
- branch_id: Numeric ID of the branch to deploy to.
- release_uuids: List of release UUIDs to deploy.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch_id | Yes | ||
release_uuids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branch_id": {
"title": "Branch Id",
"type": "integer"
},
"release_uuids": {
"items": {
"type": "string"
},
"title": "Release Uuids",
"type": "array"
}
},
"required": [
"branch_id",
"release_uuids"
],
"title": "create_branch_deploymentArguments",
"type": "object"
}