This article explains how to add a stage to a plan using Bamboo Command Line Interface (CLI).
Instructions
Use addStageUse addStage action to add a stage in a Bamboo plan. Each new plan created in Bamboo contains at least one stage and is known as the 'Default Stage'.
The following parameters are used in this action:
--plan value refers to the plan key.
--description value refers to the stage description.
--name value refers to the name of the stage.
Execute the below action to add to add a job in the stage of to a plan.
Code Block theme Midnight --action addStage --plan "MKTES-TP" --name "Execute stage" --description "Stage for the execution"
...