DevOps / Bamboo: Continuous Integration & Deployment Interview Questions
How do you set up build notifications in Bamboo?
Notifications are configured per plan (and can also be set as personal watches by individual users) under the plan's Notifications settings, where you pick an event and a delivery method.
- Events commonly configured: build failed, build first successful after a failure, build still failing (repeat failures), and deployment status changes.
- Delivery methods: email is built in; Slack or Microsoft Teams notifications are typically wired through an incoming webhook configured as a notification recipient; legacy setups sometimes still use HipChat.
A common pattern is to notify broadly (e.g. a team channel) only on failure or first-success-after-failure, rather than on every single passing build, to avoid alert fatigue while still surfacing anything that actually needs attention.
More Related questions...