すべてのバージョン
Bamboo 5.13Bamboo 5.7.x
Bamboo 5.6.x
More...
Available: |
Bamboo 2.7 and later |
|---|
On this page:
Pre-Stage Action modules allow plugins to define custom functionality that runs before the jobs for the given stage are queued for building. The module provides access to the StageExecution object.
The root element for the Pre-Stage Action module is preStageAction. It allows the following attributes and child elements for configuration:
名前 |
必須 |
説明 |
既定 |
|---|---|---|---|
クラス |
|
[Unable to render {include} The included page could not be found. ({include} をレンダリングできません。ページが見つかりませんでした)] を選択し、 |
|
鍵 (キー) |
|
[Unable to render {include} The included page could not be found. ({include} をレンダリングできません。ページが見つかりませんでした)] を選択し、 |
N/A |
name |
|
[Unable to render {include} The included page could not be found. ({include} をレンダリングできません。ページが見つかりませんでした)] を選択し、 Only used in the plugin's administrative user interface. |
|
The table summarises the elements. The sections below contain further information.
名前 |
必須 |
説明 |
既定 |
|---|---|---|---|
description |
|
[Unable to render {include} The included page could not be found. ({include} をレンダリングできません。ページが見つかりませんでした)] を選択し、 Use this element to describe the section. |
|
Pre-Stage Action modules must implement the PreStageAction interface.
Here is an example atlassian-plugin.xml file containing a Pre-Stage Action module:
<atlassian-plugin name="Hello World" key="example.plugin.helloworld">
<plugin-info>
<description>A Pre-Stage Action module type test</description>
<vendor name="Atlassian Software Systems" url="http://www.atlassian.com"/>
<version>1.0</version>
</plugin-info>
<preStageAction key="myPreStageAction" class="com.atlassian.example.bamboo.actions.MyPreStageAction">
<description>Prepares the stage for execution</description>
</preStageAction>
</atlassian-plugin>