From a14bec4cfc52e00806e359a8dd2ca4f10126ea14 Mon Sep 17 00:00:00 2001 From: nd Date: Wed, 21 Jul 2021 16:26:13 +0200 Subject: [PATCH] Make teamcity ui settings readonly (#2608) * teamcity: specify working github token in dsl * teamcity: disable settings editing in UI If VCS root doesn't have push permissions, push of settings changes made in UI fail. After that synchronization with VCS is disabled in order to not loose UI changes. With read-only UI all changes have to be made in dsl. --- .teamcity/settings.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.teamcity/settings.kts b/.teamcity/settings.kts index 437e965e..198849c9 100644 --- a/.teamcity/settings.kts +++ b/.teamcity/settings.kts @@ -68,6 +68,9 @@ project { })) } buildType(AggregatorBuild(tests)) + params { + param("teamcity.ui.settings.readOnly", "true") + } } class AggregatorBuild(tests: Collection) : BuildType({