mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
TeamCity change in 'JetBrains Public Projects / Packer Builder for vSphere' project: triggers of 'Build' build configuration were updated
This commit is contained in:
parent
b1389db5e0
commit
9a960ae744
1 changed files with 32 additions and 0 deletions
32
.teamcity/patches/buildTypes/Build.kts
vendored
Normal file
32
.teamcity/patches/buildTypes/Build.kts
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
package patches.buildTypes
|
||||
|
||||
import jetbrains.buildServer.configs.kotlin.v2018_2.*
|
||||
import jetbrains.buildServer.configs.kotlin.v2018_2.triggers.VcsTrigger
|
||||
import jetbrains.buildServer.configs.kotlin.v2018_2.triggers.vcs
|
||||
import jetbrains.buildServer.configs.kotlin.v2018_2.ui.*
|
||||
|
||||
/*
|
||||
This patch script was generated by TeamCity on settings change in UI.
|
||||
To apply the patch, change the buildType with id = 'Build'
|
||||
accordingly, and delete the patch script.
|
||||
*/
|
||||
changeBuildType(RelativeId("Build")) {
|
||||
triggers {
|
||||
val trigger1 = find<VcsTrigger> {
|
||||
vcs {
|
||||
triggerRules = "-:*.md"
|
||||
branchFilter = """
|
||||
+:*
|
||||
-:temp-*
|
||||
-:pull/*
|
||||
""".trimIndent()
|
||||
}
|
||||
}
|
||||
trigger1.apply {
|
||||
triggerRules = """
|
||||
-:*.md
|
||||
-.teamcity/
|
||||
""".trimIndent()
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue