|
On this page:
|
Post-Job Action modules allow plugins to define custom functionality that runs after all the results for Jobs belonging to the stage have been returned to the server and saved to the database. |
The root element for the Post-Job Action module is postJobAction. It allows the following attributes and child elements for configuration:
Name |
Required |
Description |
Default |
|---|---|---|---|
class |
|
|
|
key |
|
|
N/A |
name |
|
|
|
The table summarises the elements. The sections below contain further information.
Name |
Required |
Description |
Default |
|---|---|---|---|
description |
|
|
|
Post-Job Action modules must implement the PostJobAction interface.
Here is an example atlassian-plugin.xml file containing a Post-Job Action module:
<atlassian-plugin name="Hello World" key="example.plugin.helloworld">
<plugin-info>
<description>A Post-Job Action module type test</description>
<vendor name="Atlassian Software Systems" url="http://www.atlassian.com"/>
<version>1.0</version>
</plugin-info>
<postJobAction key="myPostJobAction" class="com.atlassian.example.bamboo.actions.MyPostJobAction">
<description>Tears down the Job once the result has been returned to the server and saved to the database</description>
</postJobAction>
</atlassian-plugin>
|