pipelines_promote
Promote applications through pipeline stages to deploy code, manage staged releases, coordinate multi-app promotions, and control deployment workflows. Simplifies safe app promotion between environments.
Instructions
Promote applications through pipeline stages. Use this tool when you need to: 1) Deploy code to staging or production environments, 2) Manage staged releases, 3) Coordinate multi-app promotions, 4) Control deployment workflows. The tool handles safe promotion of apps between pipeline stages.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app | Yes | Name of the app to promote from | |
to | No | comma separated list of apps to promote to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"app": {
"description": "Name of the app to promote from",
"type": "string"
},
"to": {
"description": "comma separated list of apps to promote to",
"type": "string"
}
},
"required": [
"app"
],
"type": "object"
}