-
Notifications
You must be signed in to change notification settings - Fork 7
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 'NeoForged / Bus' project: bulk pause/activate wit…
…h comment: GHA Move
- Loading branch information
Matyrobbrt
authored and
tcuser
committed
Oct 30, 2023
1 parent
fbce02c
commit 3bd71f4
Showing
2 changed files
with
32 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,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 | ||
} |
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,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 | ||
} |