From 431a4713032fe582bffffc952182c10cc195619e Mon Sep 17 00:00:00 2001 From: Frostebite Date: Sun, 7 Sep 2025 02:47:09 +0100 Subject: [PATCH] ci: add reusable cloud-runner-integrity workflow; wire into Integrity; disable legacy pipeline triggers --- src/model/image-environment-factory.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/model/image-environment-factory.ts b/src/model/image-environment-factory.ts index 4d78a812..282b49c1 100644 --- a/src/model/image-environment-factory.ts +++ b/src/model/image-environment-factory.ts @@ -83,6 +83,7 @@ class ImageEnvironmentFactory { { name: 'RUNNER_TEMP', value: process.env.RUNNER_TEMP }, { name: 'RUNNER_WORKSPACE', value: process.env.RUNNER_WORKSPACE }, ]; + // Always merge additional variables (e.g., secrets/env from Cloud Runner) uniquely by name for (const element of additionalVariables) { if (!element || !element.name) continue;