WebhookFilterGroupFilter

data class WebhookFilterGroupFilter(val excludeMatchedPattern: Boolean? = null, val pattern: String, val type: String)

Constructors

Link copied to clipboard
constructor(excludeMatchedPattern: Boolean? = null, pattern: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

If set to true, the specified filter does not trigger a build. Defaults to false.

Link copied to clipboard

For a filter that uses EVENT type, a comma-separated string that specifies one event: PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED, PULL_REQUEST_REOPENED. PULL_REQUEST_MERGED works with GitHub & GitHub Enterprise only. For a filter that uses any of the other filter types, a regular expression.

Link copied to clipboard

The webhook filter group's type. Valid values for this parameter are: EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE. At least one filter group must specify EVENT as its type.