Trigger Build Source Repo Source Args
data class TriggerBuildSourceRepoSourceArgs(val branchName: Output<String>? = null, val commitSha: Output<String>? = null, val dir: Output<String>? = null, val invertRegex: Output<Boolean>? = null, val projectId: Output<String>? = null, val repoName: Output<String>, val substitutions: Output<Map<String, String>>? = null, val tagName: Output<String>? = null) : ConvertibleToJava<TriggerBuildSourceRepoSourceArgs>
Properties
Link copied to clipboard
Regex matching branches to build. Exactly one a of branch name, tag, or commit SHA must be provided. The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
Link copied to clipboard
Only trigger a build if the revision regex does NOT match the revision regex.
Link copied to clipboard
Substitutions to use in a triggered build. Should only be used with triggers.run
Link copied to clipboard