-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TeamCity change in 'JetBrains Public Projects / JetBrains UI / Ring U…
…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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} |