Pipeline Trigger Git Configuration
data class PipelineTriggerGitConfiguration(val pullRequests: List<PipelineTriggerGitConfigurationPullRequest>? = null, val pushes: List<PipelineTriggerGitConfigurationPush>? = null, val sourceActionName: String)
Constructors
Link copied to clipboard
constructor(pullRequests: List<PipelineTriggerGitConfigurationPullRequest>? = null, pushes: List<PipelineTriggerGitConfigurationPush>? = null, sourceActionName: String)
Properties
Link copied to clipboard
The field where the repository event that will start the pipeline is specified as pull requests. A pull_request
block is documented below.
Link copied to clipboard
The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details. A push
block is documented below.
Link copied to clipboard
The name of the pipeline source action where the trigger configuration, such as Git tags, is specified. The trigger configuration will start the pipeline upon the specified change only.