TeamCity change in 'Storybook' project: triggers of 'Test Workflow' build configuration were updated

This commit is contained in:
Filipp.Riabchun 2020-02-12 19:47:03 +00:00 committed by teamcity
parent c84bf225e7
commit 47d33fd085

View File

@ -0,0 +1,23 @@
package patches.buildTypes
import jetbrains.buildServer.configs.kotlin.v2019_2.*
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.VcsTrigger
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.vcs
import jetbrains.buildServer.configs.kotlin.v2019_2.ui.*
/*
This patch script was generated by TeamCity on settings change in UI.
To apply the patch, change the buildType with id = 'TestWorkflow'
accordingly, and delete the patch script.
*/
changeBuildType(RelativeId("TestWorkflow")) {
triggers {
val trigger1 = find<VcsTrigger> {
vcs {
}
}
trigger1.apply {
quietPeriodMode = VcsTrigger.QuietPeriodMode.USE_DEFAULT
}
}
}