Our team is using Bamboo for our CI/CD pipelines, and we have a common setup involving parent-child plan dependencies.
Our Setup:
We have a "parent" plan which builds a core component.
This parent plan is configured to trigger multiple "child" plans upon its successful completion.
Each child plan has its own separate repository.
The Problem: A frequent scenario we encounter is that a commit to the parent plan's repository might introduce a change that causes one or more of the downstream child plans to fail.
We need a reliable way to notify the original committer(s) of the parent plan when one of these dependent child plans fails, as the parent's change is the root cause.
Is there a native Bamboo feature or a simpler configuration we might be overlooking that allows us to directly notify the parent plan's committers when a dependent child plan fails?