From 145637e3189a771b74d9b10f727532744204ceed Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 14 Nov 2025 11:00:06 +0100 Subject: [PATCH 1/3] fix: correct YAML syntax in build-docker-compose.yaml Add missing environment key before CASC_RELOAD_TOKEN variable in jenkins_controller service. This resolves YAML parsing errors that were preventing updatecli from processing the file correctly. --- build-docker-compose.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 8cf2c22d..2ed93afc 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -45,6 +45,7 @@ services: build: dockerfiles/. restart: on-failure # The CASC_RELOAD_TOKEN environment variable is used by the Jenkins controller to restart the Configuration as Code (JCasc) plugin configuration. + environment: - CASC_RELOAD_TOKEN=thisisnotsecure ports: - "8080:8080" From 760ad204283484bfc6b02b5fb65c79d74f00a905 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 14 Nov 2025 11:02:47 +0100 Subject: [PATCH 2/3] fix: add missing environment key in docker-compose.yaml Add missing environment key before CASC_RELOAD_TOKEN variable in jenkins_controller service. Same issue as build-docker-compose.yaml. --- docker-compose.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index adc9f3ae..969bc967 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -65,6 +65,7 @@ services: - dotnet - default # The CASC_RELOAD_TOKEN environment variable is used by the Jenkins controller to restart the Configuration as Code (JCasc) plugin configuration. + environment: - CASC_RELOAD_TOKEN=thisisnotsecure # The Jenkins web interface is exposed on port 8080. ports: From 96578367f42c1299fa7b59060cee9873d8430677 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 14 Nov 2025 11:08:58 +0100 Subject: [PATCH 3/3] chore: trigger workflow run