Vinicius Deschamps
Vinicius Deschamps

Reputation: 605

Sending notifications on build start in Bamboo server

I'm looking to be able to send notification whenever a build is started and not only when they are completed.

Is there a way to get custom Notification Events?

enter image description here

Upvotes: 0

Views: 1524

Answers (1)

Wesley Rolnick
Wesley Rolnick

Reputation: 891

There is not a native way to do this. However, there are some creative ways to get around this:

  1. Use a task in a build job to send out the notification via a script or executable (my recommendation).
  2. Use webhooks and 3rd party applications (e.g., Slack, Microsoft Teams)
  3. Use the Bamboo API + a custom script to watch for the build to start.

Upvotes: 1

Related Questions