Skip to content

Commit

Permalink
TeamCity change in 'NeoForged / Bus' project: bulk pause/activate wit…
Browse files Browse the repository at this point in the history
…h comment: GHA Move
  • Loading branch information
Matyrobbrt authored and tcuser committed Oct 30, 2023
1 parent fbce02c commit 3bd71f4
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .teamcity/patches/buildTypes/eventbus__Build.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package patches.buildTypes

import jetbrains.buildServer.configs.kotlin.v2019_2.*
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 = 'eventbus__Build'
accordingly, and delete the patch script.
*/
changeBuildType(RelativeId("eventbus__Build")) {
check(paused == false) {
"Unexpected paused: '$paused'"
}
paused = true
}
16 changes: 16 additions & 0 deletions .teamcity/patches/buildTypes/eventbus__PullRequests.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package patches.buildTypes

import jetbrains.buildServer.configs.kotlin.v2019_2.*
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 = 'eventbus__PullRequests'
accordingly, and delete the patch script.
*/
changeBuildType(RelativeId("eventbus__PullRequests")) {
check(paused == false) {
"Unexpected paused: '$paused'"
}
paused = true
}

0 comments on commit 3bd71f4

Please sign in to comment.