Available: | Bamboo 1.1 and later |
Deprecated: | Bamboo 2.2 -- use the Notification Type Module instead (see Building a Notification Plugin as well) |
Deprecated since Bamboo 2.2 Please use the Notification Type Module instead (see Building a Notification Plugin as well) A plugin module which allows you to define your own notification condition
You can use this plugin to
Notification Condition modules must implement the com.atlassian.bamboo.notification.NotificationCondition interface.
1 2<notification-condition key="buildCompleted.XFailedBuilds" name="After X Failed Builds Completed" class="com.atlassian.bamboo.notification.conditions.AfterXFailedBuildsCondition"> <description>Send Notification After X Failed Builds</description> <resource type="freemarker" name="edit" location="templates/plugins/notifications/afterXFailedEdit.ftl"/> <resource type="freemarker" name="view" location="templates/plugins/notifications/afterXFailedView.ftl"/> </notification-condition>
Several of the interface methods for this class accept an Event object as a parameter. Current functionality only allows this to be a BuildCompletedEvent. This event will contain the Build object, BuildResults object and BuildResultsSummary object for you to use.
Rate this page: