Skip to end of banner
Go to start of banner

How to add a Trigger to Bamboo plan with Bamboo Command Line Interface (CLI)

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

This article explains how to add a trigger to the Bamboo plan with Bamboo Command Line Interface (CLI).

Instructions

Use addTrigger action to add a trigger to the plan. Triggering in Bamboo allows plan builds to be started automatically.

The parameters used in the below action:

--plan value refers to Bamboo plan key.
--type value refers to the Triggering options.
--repository value refers to the repository name.
--schedule value refers to the schedule configuration.

  • Execute this action for the trigger type PollingBamboo will 'poll' the selected source code repositories for code changes using a schedule.

    --action addTrigger --plan "MKTES-TP" --type "Polling" --description "polling trigger" --repository "test_training_mk" --schedule "3600"
  • Execute this action for the trigger type ScheduledBamboo will trigger scheduled builds of this plan based on a cron expression.

    --action addTrigger --plan "MKTES-TP" --type "Scheduled" --description "scheduled trigger" --schedule "1 0 0 ? * *"


  • It is recommended to test the commands in a non-production environment before running in the production.
  • Refer to this link for Cron-based scheduling.
  • No labels