From 011ef86a1b3cdfb95d069c6f6da8a2c4048465d1 Mon Sep 17 00:00:00 2001 From: AdmiringWorm Date: Thu, 6 Feb 2025 11:37:33 +0100 Subject: [PATCH] (maint) Move support exclusion to VCR filter This updates the settings.kts file by moving the support filter from VCS to the VCS filter. This is believed to be the correct place to be able to filter out the support branch, while still being able to manually initiate a build on the branch. --- .teamcity/settings.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.teamcity/settings.kts b/.teamcity/settings.kts index 7542d3ad3..745b52ef4 100644 --- a/.teamcity/settings.kts +++ b/.teamcity/settings.kts @@ -39,7 +39,6 @@ object Chocolatey : BuildType({ branchFilter = """ +:* - -:support/* """.trimIndent() } @@ -73,7 +72,9 @@ object Chocolatey : BuildType({ triggers { vcs { - branchFilter = "" + branchFilter = """ + -:support/* + """.trimIndent() } }