Skip to content

Commit

Permalink
TeamCity change in 'JetBrains Public Projects / JetBrains UI / Ring U…
Browse files Browse the repository at this point in the history
…I' project: triggers of 'All checks' build configuration were updated
  • Loading branch information
filipp.riabchun authored and tcuser committed Mar 16, 2021
1 parent 7f8dcc6 commit acbda5a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .teamcity/patches/buildTypes/AllChecks.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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 = 'AllChecks'
accordingly, and delete the patch script.
*/
changeBuildType(RelativeId("AllChecks")) {
triggers {
val trigger1 = find<VcsTrigger> {
vcs {
quietPeriodMode = VcsTrigger.QuietPeriodMode.USE_DEFAULT
triggerRules = "-:user=npmjs-buildserver:**"
}
}
trigger1.apply {
quietPeriodMode = VcsTrigger.QuietPeriodMode.DO_NOT_USE
}
}
}

0 comments on commit acbda5a

Please sign in to comment.