pipelines_create
Set up new deployment workflows by creating Heroku pipelines, organizing apps across development stages, and configuring team-based structures with optional initial app settings.
Instructions
Create new Heroku deployment pipelines. Use this tool when you need to: 1) Set up new deployment workflows, 2) Create staged application environments, 3) Organize apps by development stages, 4) Configure team-based pipeline structures. The tool manages pipeline creation with optional team and initial app configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app | No | Name of the app to add to the pipeline | |
name | Yes | Name of the pipeline to create | |
stage | Yes | Stage of first app in pipeline (e.g., production, staging, development) | |
team | No | Team to create the pipeline in |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"app": {
"description": "Name of the app to add to the pipeline",
"type": "string"
},
"name": {
"description": "Name of the pipeline to create",
"type": "string"
},
"stage": {
"description": "Stage of first app in pipeline (e.g., production, staging, development)",
"enum": [
"development",
"staging",
"production"
],
"type": "string"
},
"team": {
"description": "Team to create the pipeline in",
"type": "string"
}
},
"required": [
"name",
"stage"
],
"type": "object"
}