Finish Build Trigger
Base class for Finish Build Triggers. Finish build trigger runs build when some other build finishes.
Example. Trigger a build if a new finished build or builds appear in the history of the build configuration with the specified id and with the branch starting with 'release/' prefix.
buildType {
// Other Build Type settings ...
triggers {
// Other Triggers ...
finishBuildTrigger {
buildType = "<id of a build configuration>"
branchFilter = "+:release/*"
}
Content copied to clipboard }
}
See also
Properties
Branch filter allows to limit the branches where finished builds are watched.
Parameters that are added to triggered builds
Use buildType instead
Whether the build should be triggered with clean checkout
When the enforceCleanCheckout is set to true specifies whether the clean checkout should also be applied to all dependencies.
Whether the build should be triggered only after a successful build in the watched build configuration
Functions
Configures build parameters that are applied to triggered builds
Deletes all configured build parameters
Copies parameters of this object to the specified target
Validates this object and reports found errors to the provided consumer