TriggerRepositoryEventConfigPush

data class TriggerRepositoryEventConfigPush(val branch: String? = null, val invertRegex: Boolean? = null, val tag: String? = null)

Constructors

Link copied to clipboard
constructor(branch: String? = null, invertRegex: Boolean? = null, tag: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val branch: String? = null

Regex of branches to match. Specify only one of branch or tag.

Link copied to clipboard
val invertRegex: Boolean? = null

When true, only trigger a build if the revision regex does NOT match the gitRef regex.

Link copied to clipboard
val tag: String? = null

Regex of tags to match. Specify only one of branch or tag.