User Interface plugin modules
Build Lifecycle plugin modules
Notification plugin modules
System plugin modules

Post-Build Completed Action module

Available:

Bamboo 2.6 and later

Description

Like the Build Processor Module, this allows you to specify a custom action to take place. However, the difference is that this will run after the full build result has been registered. The build is deemed to have been completed before the PostBuildCompletedAction is fired. Hence, build complete actions cannot impact the state of the build.

Interface

Post Build Completed Action modules must implement the CustomPostBuildCompletedAction interface.

Sample Module Descriptor Element

1
2
<postBuildCompletedAction key="autoLabeller" name="Build Automatic Labeller"
                  class="com.atlassian.bamboo.labels.AutoLabelBuildCompleteAction">
    <resource type="freemarker" name="edit" location="templates/plugins/buildCompleteAction/autoLabellingEdit.ftl"/>
    <resource type="freemarker" name="view" location="templates/plugins/buildCompleteAction/autoLabellingView.ftl"/>
    <description>An automatic labelling plugin.</description>
</postBuildCompletedAction>

Rate this page: