feat(orchestrator): automation & CI dispatch providers — PowerShell, GitHub Actions, GitLab CI, Ansible - #806
feat(orchestrator): automation & CI dispatch providers — PowerShell, GitHub Actions, GitLab CI, Ansible#806frostebite wants to merge 7 commits into
Conversation
… Actions, GitLab CI, Ansible Add four new providers that delegate builds to external CI platforms: - remote-powershell: Execute on remote machines via WinRM/SSH - github-actions: Dispatch workflow_dispatch on target repository - gitlab-ci: Trigger pipeline via GitLab API - ansible: Run playbooks against managed inventory Each follows the CI-as-a-provider pattern: trigger remote job, pass build parameters, stream logs, report status. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthroughAdds four new orchestration providers (Remote PowerShell, GitHub Actions, GitLab CI, Ansible), their inputs, wiring in the orchestrator, BuildParameters/Input accessors, many unit tests, and a small workflow change. Providers implement setup/run/cleanup/list/poll operations to delegate builds to external platforms. 📝 WalkthroughAdds four new orchestration providers (Remote PowerShell, GitHub Actions, GitLab CI, Ansible), their inputs, wiring in the orchestrator, BuildParameters/Input accessors, many unit tests, and a small workflow change. Providers implement setup/run/cleanup/list/poll operations to delegate builds to external platforms. Changes
Sequence Diagram(s)sequenceDiagram
participant Orch as Orchestrator
participant Sys as OrchestratorSystem
participant GH as GitHub API
participant Runner as GitHub Actions Runner
Orch->>GH: POST /actions/workflows/{wf}/dispatches (inputs: build_guid, image, commands, env)
GH-->>Orch: 201/ack (dispatch accepted)
Orch->>GH: GET /actions/runs?event=workflow_dispatch (poll for run)
GH-->>Orch: run_id (in_progress → completed)
Orch->>GH: GET /actions/runs/{run_id}/logs
GH-->>Orch: logs (stream)
Orch->>Sys: OrchestratorSystem.run(...) to fetch/store logs
Runner-->>GH: emits run status & logs
Orch->>Orch: return aggregated logs/result
Estimated code review effort🎯 4 (Complex) | ⏱️ ~45 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 12
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@src/model/build-parameters.ts`:
- Around line 110-132: BuildParameters currently exposes sensitive fields
(remotePowershellCredential, githubActionsToken, gitlabTriggerToken,
ansibleVaultPassword) which are serialized by the generic output/check payload
in orchestrator.ts; to fix, remove these secrets from the public BuildParameters
serialization path by either moving them into a separate secure credential
object/class or marking them non-serializable and exclude them from the payloads
produced in orchestrator.ts (the output loop and check payload logic), and
update usages to read secrets from the new secure store or explicit accessor
methods rather than the generic BuildParameters fields.
In `@src/model/orchestrator/providers/ansible/index.ts`:
- Around line 114-132: The current assembly of the shell string in
commandParts/environmentPrefix/fullCommand injects secret values and is
vulnerable to shell injection; instead build the ansible command using an args
array and pass secrets via the process environment or a temporary --extra-vars
JSON file so values are never concatenated into a shell line. Update the code
paths that reference commandParts, environmentPrefix and fullCommand (and where
it's executed) to: 1) convert the fixed tokens ('ansible-playbook', inventory,
playbook, '--no-color', optional --vault-password-file) into a string[] of argv
passed to a spawn/execFile-style API, 2) move secrets (secrets.map(...)) into a
copied env object (process.env + secret env entries) or write extraVariablesJson
to a secure temp file and pass --extra-vars "@path", and 3) ensure no secret is
ever interpolated into a single shell command or logged.
- Around line 101-109: The current catch silently drops this.extraVariables;
update the catch so it either fails fast or preserves a safe raw fallback:
replace the empty catch block in the JSON.parse of this.extraVariables to (a)
throw a clear Error including the bad extraVariables if you want to fail fast,
or (b) if you prefer a fallback, set a dedicated field on playbookVariables
(e.g. playbookVariables.__ansible_extra_vars_raw = this.extraVariables) and keep
the warning via OrchestratorLogger.logWarning(`[Ansible] Failed to parse
ansibleExtraVars as JSON, preserving raw extra vars`), so downstream code that
builds the ansible CLI can use that raw value as a safe `-e` fallback; touch the
JSON.parse try/catch around this.extraVariables and the
OrchestratorLogger.logWarning call accordingly.
In `@src/model/orchestrator/providers/github-actions/index.ts`:
- Around line 55-57: The review points out GH_TOKEN is interpolated into shell
command strings (e.g., the call to OrchestratorSystem.Run that currently builds
`GH_TOKEN=${this.token} gh api ...`), which leaks the PAT; change these calls to
pass auth via an environment map instead of inline string interpolation: stop
prepending `GH_TOKEN=${this.token}` to the command and instead call
OrchestratorSystem.Run with the same command string but supply an env/options
parameter containing { GH_TOKEN: this.token } (or the runner's env argument) so
the token is injected into the subprocess environment; update every similar
invocation that uses `GH_TOKEN=${this.token}` (the other OrchestratorSystem.Run
usages around the later gh api calls) to follow the same pattern.
- Around line 90-123: Add a unique correlation key to the dispatched inputs
(e.g., inputs.buildGuid = a UUID) and include it in inputsJson, then change the
polling logic (which currently queries `.workflow_runs[0]`) to search returned
runs for the one whose run metadata contains that buildGuid: use
OrchestratorSystem.Run to list runs created after beforeDispatch, iterate the
returned runs and for each candidate fetch its full run details (e.g., GET
repos/{repo}/actions/runs/{id}) and compare the stored input/metadata to the
buildGuid, and only when matched assign this.runId and break; update references
to inputsJson, beforeDispatch, OrchestratorSystem.Run and this.runId in the
existing code.
- Around line 135-165: The polling loop using the local status variable in the
method that calls OrchestratorSystem.Run for
repos/${this.repo}/actions/runs/${this.runId} can spin forever on transient
errors or stalled runs; add a bounded timeout or max-attempts guard (e.g.,
maxAttempts or deadline based on Date.now()) around the while (status ===
'in_progress' || status === 'queued') loop, increment a counter or check elapsed
time each iteration, and when the bound is exceeded log a clear error via
OrchestratorLogger.logWarning/ log and throw a descriptive Error (including
this.runId and last known status) so callers don’t hang; also ensure that caught
errors from OrchestratorSystem.Run increment the failure counter and don't
silently continue indefinitely unless within the allowed retry window.
In `@src/model/orchestrator/providers/gitlab-ci/index.ts`:
- Around line 76-86: The code builds curl form args by interpolating unescaped
user values into pipelineVariables (variables like buildGuid, image, commands,
mountdir, workingdir and items from environment) and embeds the trigger token
inline; fix by shell-escaping or URL-encoding each value before interpolation
(or use Buffer/base64 consistently for commands) and replace direct string
interpolation into pipelineVariables with a safe encoder (apply to the loop over
environment too), and stop embedding the trigger token inline—pass it via a
protected environment variable or Authorization header (and ensure any logging
redacts the token).
- Around line 67-70: The runTaskInWorkflow function currently accepts the
secrets parameter (OrchestratorSecret[]) but never forwards them to the GitLab
pipeline creation/dispatch payload; update runTaskInWorkflow to map each
OrchestratorSecret into the GitLab variables array (or variables object) in the
pipeline trigger API payload so downstream jobs receive them, ensuring you
preserve secret names and values and mark them as masked/protected if your API
supports it; locate the runTaskInWorkflow implementation and the code that
builds the pipeline trigger payload/variables and add conversion logic from
secrets -> variables before sending the request.
- Around line 107-122: The polling loop in the GitLab CI provider (while
(!terminalStatuses.has(status)) using OrchestratorSystem.Run to call
`${this.apiUrl}/api/v4/projects/${encodedProject}/pipelines/${this.pipelineId}`)
is unbounded and swallows transient errors; limit the poll by adding a
maxAttempts or timeout (e.g., maxAttempts with backoff and/or an overall
deadline), retry transient failures a few times before failing, and after
exceeding the limit emit an error (OrchestratorLogger.logWarning or throw) so
callers know the pipeline read timed out; implement this inside the existing
loop around OrchestratorSystem.Run and use pipelineId, triggerToken, apiUrl,
terminalStatuses for context.
- Around line 53-54: The GET requests are incorrectly using this.triggerToken
(only valid for trigger POSTs); change the code paths that perform reads (the
curl calls using this.apiUrl/encodedProject) to use a separate read-scoped token
(e.g., a Personal/Project Access Token or CI_JOB_TOKEN) instead of
this.triggerToken. Introduce or use an existing read token property (e.g.,
this.readToken or config.readToken), update all GET requests (project access
check, pipeline status polling, jobs listing, job trace fetch, and pipelines
listing) to send that token in the PRIVATE-TOKEN header, and ensure the token is
validated/loaded where the provider is initialized so POST trigger calls still
use this.triggerToken while all GETs use the read-scoped token.
In `@src/model/orchestrator/providers/remote-powershell/index.ts`:
- Around line 70-74: The current builders environmentBlock and secretBlock (the
mapping that interpolates environment and secrets into PowerShell text) and the
credential parsing logic that splits credentials on ':' must be replaced to
avoid injection, loss of characters, and unsafe logging: stop interpolating raw
secret values into command strings; instead pass values as parameters or encode
them (e.g., Base64) and decode within the PowerShell script or use PowerShell
SecureString / PSCredential creation inside the remote session, and ensure you
transport secrets via safe channels rather than direct string concatenation. For
credential parsing (the code that splits credentials on ':'), implement a proper
parser that recognizes the documented credential formats (user:password and
certificate-path) without splitting on every ':'—detect the format explicitly
and preserve full password text (do not truncate on colons); update the code
paths that build commands to reference the new parameterized/encoded payloads
(look for environmentBlock, secretBlock, and the credential parsing
function/variable) and remove direct interpolation of secret values into command
text and logs.
- Around line 45-47: The setup currently always runs Test-WSMan via
this.buildPwshCommand(`Test-WSMan ...`) which ignores the configured transport
and breaks when remotePowershellTransport === 'ssh'; change the setup in the
code that builds and runs the testCommand so it branches on the transport (e.g.,
this.remotePowershellTransport or remotePowershellTransport): only run the
Test-WSMan probe for WSMan transport, and for SSH either run an SSH-specific
connectivity check or skip the probe before task execution; update the block
around this.buildPwshCommand / testCommand and the try/catch handling
accordingly so SSH setups are not forced to execute Test-WSMan against
this.host.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: d8b4a48e-2b8b-4174-a165-e39ec9398a0d
⛔ Files ignored due to path filters (2)
dist/index.jsis excluded by!**/dist/**dist/index.js.mapis excluded by!**/dist/**,!**/*.map
📒 Files selected for processing (8)
action.ymlsrc/model/build-parameters.tssrc/model/input.tssrc/model/orchestrator/orchestrator.tssrc/model/orchestrator/providers/ansible/index.tssrc/model/orchestrator/providers/github-actions/index.tssrc/model/orchestrator/providers/gitlab-ci/index.tssrc/model/orchestrator/providers/remote-powershell/index.ts
| // Remote PowerShell provider | ||
| public remotePowershellHost!: string; | ||
| public remotePowershellCredential!: string; | ||
| public remotePowershellTransport!: string; | ||
|
|
||
| // GitHub Actions provider | ||
| public githubActionsRepo!: string; | ||
| public githubActionsWorkflow!: string; | ||
| public githubActionsToken!: string; | ||
| public githubActionsRef!: string; | ||
|
|
||
| // GitLab CI provider | ||
| public gitlabProjectId!: string; | ||
| public gitlabTriggerToken!: string; | ||
| public gitlabApiUrl!: string; | ||
| public gitlabRef!: string; | ||
|
|
||
| // Ansible provider | ||
| public ansibleInventory!: string; | ||
| public ansiblePlaybook!: string; | ||
| public ansibleExtraVars!: string; | ||
| public ansibleVaultPassword!: string; | ||
|
|
There was a problem hiding this comment.
Sensitive provider credentials are now part of the generic output/check payload path.
By adding remotePowershellCredential, githubActionsToken, gitlabTriggerToken, and ansibleVaultPassword into BuildParameters (Line 110-132 and Line 269-290), these values become eligible for broad serialization in src/model/orchestrator/orchestrator.ts (output loop at Line 61-69 and check payload at Line 295-302). That creates a credential leakage path.
🔒 Proposed mitigation (in src/model/orchestrator/orchestrator.ts)
+const sensitiveBuildParameterKeys = new Set([
+ 'gitPrivateToken',
+ 'unitySerial',
+ 'unityEmail',
+ 'unityPassword',
+ 'remotePowershellCredential',
+ 'githubActionsToken',
+ 'gitlabTriggerToken',
+ 'ansibleVaultPassword',
+]);
// setup()
for (const element of buildParameterPropertyNames) {
- core.setOutput(Input.ToEnvVarFormat(element), buildParameters[element]);
+ if (!sensitiveBuildParameterKeys.has(element)) {
+ core.setOutput(Input.ToEnvVarFormat(element), buildParameters[element]);
+ }
}
// updateStatusWithBuildParameters()
const content = { ...Orchestrator.buildParameters };
-content.gitPrivateToken = ``;
-content.unitySerial = ``;
-content.unityEmail = ``;
-content.unityPassword = ``;
+for (const key of sensitiveBuildParameterKeys) {
+ (content as any)[key] = ``;
+}Also applies to: 269-290
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/build-parameters.ts` around lines 110 - 132, BuildParameters
currently exposes sensitive fields (remotePowershellCredential,
githubActionsToken, gitlabTriggerToken, ansibleVaultPassword) which are
serialized by the generic output/check payload in orchestrator.ts; to fix,
remove these secrets from the public BuildParameters serialization path by
either moving them into a separate secure credential object/class or marking
them non-serializable and exclude them from the payloads produced in
orchestrator.ts (the output loop and check payload logic), and update usages to
read secrets from the new secure store or explicit accessor methods rather than
the generic BuildParameters fields.
| // Merge user-provided extra vars | ||
| if (this.extraVariables) { | ||
| try { | ||
| const userVariables = JSON.parse(this.extraVariables); | ||
| Object.assign(playbookVariables, userVariables); | ||
| } catch { | ||
| OrchestratorLogger.logWarning(`[Ansible] Failed to parse ansibleExtraVars as JSON, using as-is`); | ||
| } | ||
| } |
There was a problem hiding this comment.
ansibleExtraVars failure path silently drops user input.
At Line 107 the warning says “using as-is”, but no fallback is applied afterward, so user-provided vars are ignored. Please either fail fast or actually append a safe raw -e fallback.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/ansible/index.ts` around lines 101 - 109,
The current catch silently drops this.extraVariables; update the catch so it
either fails fast or preserves a safe raw fallback: replace the empty catch
block in the JSON.parse of this.extraVariables to (a) throw a clear Error
including the bad extraVariables if you want to fail fast, or (b) if you prefer
a fallback, set a dedicated field on playbookVariables (e.g.
playbookVariables.__ansible_extra_vars_raw = this.extraVariables) and keep the
warning via OrchestratorLogger.logWarning(`[Ansible] Failed to parse
ansibleExtraVars as JSON, preserving raw extra vars`), so downstream code that
builds the ansible CLI can use that raw value as a safe `-e` fallback; touch the
JSON.parse try/catch around this.extraVariables and the
OrchestratorLogger.logWarning call accordingly.
| const commandParts = [ | ||
| 'ansible-playbook', | ||
| `-i "${this.inventory}"`, | ||
| `"${this.playbook}"`, | ||
| `-e '${extraVariablesJson}'`, | ||
| '--no-color', | ||
| ]; | ||
|
|
||
| if (this.vaultPassword) { | ||
| commandParts.push(`--vault-password-file "${this.vaultPassword}"`); | ||
| } | ||
|
|
||
| // Add secret variables as extra environment | ||
| const environmentPrefix = secrets | ||
| .map((secret) => `${secret.EnvironmentVariable}='${secret.ParameterValue}'`) | ||
| .join(' '); | ||
|
|
||
| const fullCommand = environmentPrefix ? `${environmentPrefix} ${commandParts.join(' ')}` : commandParts.join(' '); | ||
|
|
There was a problem hiding this comment.
Shell command assembly is injection-prone and exposes secrets.
Line 127-129 injects secret values directly into a shell command, and Line 131 executes the fully interpolated string. Any ' in values can break quoting/inject shell fragments, and the full command is loggable by the current command runner.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/ansible/index.ts` around lines 114 - 132,
The current assembly of the shell string in
commandParts/environmentPrefix/fullCommand injects secret values and is
vulnerable to shell injection; instead build the ansible command using an args
array and pass secrets via the process environment or a temporary --extra-vars
JSON file so values are never concatenated into a shell line. Update the code
paths that reference commandParts, environmentPrefix and fullCommand (and where
it's executed) to: 1) convert the fixed tokens ('ansible-playbook', inventory,
playbook, '--no-color', optional --vault-password-file) into a string[] of argv
passed to a spawn/execFile-style API, 2) move secrets (secrets.map(...)) into a
copied env object (process.env + secret env entries) or write extraVariablesJson
to a secure temp file and pass --extra-vars "@path", and 3) ensure no secret is
ever interpolated into a single shell command or logged.
| const result = await OrchestratorSystem.Run( | ||
| `GH_TOKEN=${this.token} gh api repos/${this.repo}/actions/workflows/${this.workflow} --jq '.id'`, | ||
| ); |
There was a problem hiding this comment.
GH_TOKEN is embedded in command strings and can leak.
Inline GH_TOKEN=${this.token} usage in shell command strings exposes the PAT to command logging and process inspection paths. Please move token passing to an env map in the command runner and avoid string interpolation for auth material.
Also applies to: 96-98, 114-116, 140-142, 169-171
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/github-actions/index.ts` around lines 55 -
57, The review points out GH_TOKEN is interpolated into shell command strings
(e.g., the call to OrchestratorSystem.Run that currently builds
`GH_TOKEN=${this.token} gh api ...`), which leaks the PAT; change these calls to
pass auth via an environment map instead of inline string interpolation: stop
prepending `GH_TOKEN=${this.token}` to the command and instead call
OrchestratorSystem.Run with the same command string but supply an env/options
parameter containing { GH_TOKEN: this.token } (or the runner's env argument) so
the token is injected into the subprocess environment; update every similar
invocation that uses `GH_TOKEN=${this.token}` (the other OrchestratorSystem.Run
usages around the later gh api calls) to follow the same pattern.
| // Record the time before dispatch to identify the run | ||
| const beforeDispatch = new Date().toISOString(); | ||
|
|
||
| // Dispatch the workflow | ||
| const inputsJson = JSON.stringify(inputs).replace(/'/g, "'\\''"); | ||
| try { | ||
| await OrchestratorSystem.Run( | ||
| `GH_TOKEN=${this.token} gh api repos/${this.repo}/actions/workflows/${this.workflow}/dispatches -X POST -f ref='${this.ref}' -f "inputs=${inputsJson}"`, | ||
| ); | ||
| OrchestratorLogger.log(`[GitHubActions] Workflow dispatched`); | ||
| } catch (error: any) { | ||
| throw new Error(`Failed to dispatch workflow: ${error.message || error}`); | ||
| } | ||
|
|
||
| // Poll for the run to appear | ||
| OrchestratorLogger.log(`[GitHubActions] Waiting for workflow run to start...`); | ||
| let attempts = 0; | ||
| const maxAttempts = 30; | ||
|
|
||
| while (attempts < maxAttempts) { | ||
| attempts++; | ||
| await new Promise((resolve) => setTimeout(resolve, 10_000)); | ||
|
|
||
| try { | ||
| const runsJson = await OrchestratorSystem.Run( | ||
| `GH_TOKEN=${this.token} gh api "repos/${this.repo}/actions/workflows/${this.workflow}/runs?created=>${beforeDispatch}&per_page=5" --jq '.workflow_runs[0] | {id, status, conclusion}'`, | ||
| true, | ||
| ); | ||
|
|
||
| const run = JSON.parse(runsJson.trim()); | ||
| if (run.id) { | ||
| this.runId = run.id; | ||
| OrchestratorLogger.log(`[GitHubActions] Run started: ${this.runId} (status: ${run.status})`); | ||
| break; |
There was a problem hiding this comment.
Run correlation is race-prone under concurrent dispatches.
Line 115 chooses .workflow_runs[0] after beforeDispatch, which can bind to a different run when multiple dispatches happen close together. Please add a stronger correlation key (e.g., dedicated input/buildGuid reflected in run metadata and filtered explicitly).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/github-actions/index.ts` around lines 90 -
123, Add a unique correlation key to the dispatched inputs (e.g.,
inputs.buildGuid = a UUID) and include it in inputsJson, then change the polling
logic (which currently queries `.workflow_runs[0]`) to search returned runs for
the one whose run metadata contains that buildGuid: use OrchestratorSystem.Run
to list runs created after beforeDispatch, iterate the returned runs and for
each candidate fetch its full run details (e.g., GET
repos/{repo}/actions/runs/{id}) and compare the stored input/metadata to the
buildGuid, and only when matched assign this.runId and break; update references
to inputsJson, beforeDispatch, OrchestratorSystem.Run and this.runId in the
existing code.
| environment: OrchestratorEnvironmentVariable[], | ||
| // eslint-disable-next-line no-unused-vars | ||
| secrets: OrchestratorSecret[], | ||
| ): Promise<string> { |
There was a problem hiding this comment.
secrets are ignored in GitLab pipeline dispatch.
runTaskInWorkflow accepts secrets but does not forward them to pipeline variables, so secret-dependent downstream build steps won’t receive required inputs.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/gitlab-ci/index.ts` around lines 67 - 70,
The runTaskInWorkflow function currently accepts the secrets parameter
(OrchestratorSecret[]) but never forwards them to the GitLab pipeline
creation/dispatch payload; update runTaskInWorkflow to map each
OrchestratorSecret into the GitLab variables array (or variables object) in the
pipeline trigger API payload so downstream jobs receive them, ensuring you
preserve secret names and values and mark them as masked/protected if your API
supports it; locate the runTaskInWorkflow implementation and the code that
builds the pipeline trigger payload/variables and add conversion logic from
secrets -> variables before sending the request.
| const pipelineVariables: string[] = [ | ||
| `-f "variables[BUILD_GUID]=${buildGuid}"`, | ||
| `-f "variables[BUILD_IMAGE]=${image}"`, | ||
| `-f "variables[BUILD_COMMANDS]=${Buffer.from(commands).toString('base64')}"`, | ||
| `-f "variables[MOUNT_DIR]=${mountdir}"`, | ||
| `-f "variables[WORKING_DIR]=${workingdir}"`, | ||
| ]; | ||
|
|
||
| for (const element of environment) { | ||
| pipelineVariables.push(`-f "variables[${element.name}]=${element.value}"`); | ||
| } |
There was a problem hiding this comment.
Pipeline trigger command is built with unescaped values and inline token.
User/environment values are injected directly into curl form arguments (Line 76-86), and the trigger token is embedded inline (Line 91-93). Special characters can break command semantics, and secrets can leak through command logging.
Also applies to: 91-93
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/gitlab-ci/index.ts` around lines 76 - 86,
The code builds curl form args by interpolating unescaped user values into
pipelineVariables (variables like buildGuid, image, commands, mountdir,
workingdir and items from environment) and embeds the trigger token inline; fix
by shell-escaping or URL-encoding each value before interpolation (or use
Buffer/base64 consistently for commands) and replace direct string interpolation
into pipelineVariables with a safe encoder (apply to the loop over environment
too), and stop embedding the trigger token inline—pass it via a protected
environment variable or Authorization header (and ensure any logging redacts the
token).
| // Test connectivity | ||
| const testCommand = this.buildPwshCommand(`Test-WSMan -ComputerName "${this.host}" -ErrorAction Stop`); | ||
| try { |
There was a problem hiding this comment.
Setup ignores selected transport and always probes WSMan.
Line 46 always executes Test-WSMan, so remotePowershellTransport=ssh can fail during setup before task execution.
🛠️ Suggested fix
-const testCommand = this.buildPwshCommand(`Test-WSMan -ComputerName "${this.host}" -ErrorAction Stop`);
+const healthCheckScript =
+ this.transport === 'ssh'
+ ? `Invoke-Command -HostName '${this.host}' -ScriptBlock { 'ok' } -ErrorAction Stop`
+ : `Test-WSMan -ComputerName '${this.host}' -ErrorAction Stop`;
+const testCommand = this.buildPwshCommand(healthCheckScript);📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| // Test connectivity | |
| const testCommand = this.buildPwshCommand(`Test-WSMan -ComputerName "${this.host}" -ErrorAction Stop`); | |
| try { | |
| // Test connectivity | |
| const healthCheckScript = | |
| this.transport === 'ssh' | |
| ? `Invoke-Command -HostName '${this.host}' -ScriptBlock { 'ok' } -ErrorAction Stop` | |
| : `Test-WSMan -ComputerName '${this.host}' -ErrorAction Stop`; | |
| const testCommand = this.buildPwshCommand(healthCheckScript); | |
| try { |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/remote-powershell/index.ts` around lines 45
- 47, The setup currently always runs Test-WSMan via
this.buildPwshCommand(`Test-WSMan ...`) which ignores the configured transport
and breaks when remotePowershellTransport === 'ssh'; change the setup in the
code that builds and runs the testCommand so it branches on the transport (e.g.,
this.remotePowershellTransport or remotePowershellTransport): only run the
Test-WSMan probe for WSMan transport, and for SSH either run an SSH-specific
connectivity check or skip the probe before task execution; update the block
around this.buildPwshCommand / testCommand and the try/catch handling
accordingly so SSH setups are not forced to execute Test-WSMan against
this.host.
| const environmentBlock = environment.map((element) => `$env:${element.name} = '${element.value}'`).join('; '); | ||
|
|
||
| const secretBlock = secrets | ||
| .map((secret) => `$env:${secret.EnvironmentVariable} = '${secret.ParameterValue}'`) | ||
| .join('; '); |
There was a problem hiding this comment.
Credential and secret handling is unsafe and lossy.
Line 70-74 and Line 151-157 directly interpolate sensitive values into PowerShell command text. This is fragile for quote-containing values and creates injection/logging risk. Also, Line 152-154 splits credentials on :, which truncates valid passwords containing : and does not handle the documented certificate-path credential format.
Also applies to: 151-157
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/remote-powershell/index.ts` around lines 70
- 74, The current builders environmentBlock and secretBlock (the mapping that
interpolates environment and secrets into PowerShell text) and the credential
parsing logic that splits credentials on ':' must be replaced to avoid
injection, loss of characters, and unsafe logging: stop interpolating raw secret
values into command strings; instead pass values as parameters or encode them
(e.g., Base64) and decode within the PowerShell script or use PowerShell
SecureString / PSCredential creation inside the remote session, and ensure you
transport secrets via safe channels rather than direct string concatenation. For
credential parsing (the code that splits credentials on ':'), implement a proper
parser that recognizes the documented credential formats (user:password and
certificate-path) without splitting on every ':'—detect the format explicitly
and preserve full password text (do not truncate on colons); update the code
paths that build commands to reference the new parameterized/encoded payloads
(look for environmentBlock, secretBlock, and the credential parsing
function/variable) and remove direct interpolation of secret values into command
text and logs.
…Lab CI, PowerShell, and Ansible providers (#806) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
| } | ||
|
|
||
| private buildPwshCommand(script: string): string { | ||
| return `pwsh -NoProfile -NonInteractive -Command "${script.replace(/"/g, '\\"')}"`; |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 5 months ago
In general, to fix incomplete escaping when interpolating untrusted strings into command lines or other structured strings, either use a well-tested escaping/sanitization library appropriate for the target context (here, PowerShell/CLI) or implement an escaping function that correctly handles all meta-characters, including backslashes, and use it consistently.
For this specific case in src/model/orchestrator/providers/remote-powershell/index.ts, the safest minimal change is to extend the escaping in buildPwshCommand so that it also escapes backslashes. This makes the behavior consistent with typical shell-style escaping where \ is used to escape ", and it addresses CodeQL’s concern. We will modify line 140 so that it first replaces backslashes (\) with double backslashes (\\), then replaces double quotes with \". The order matters: we must escape existing backslashes before introducing additional ones for quotes, to avoid double-processing or changing semantics.
Concretely:
- In
buildPwshCommand, changescript.replace(/"/g, '\\"')toscript.replace(/\\/g, '\\\\').replace(/"/g, '\\"'). - No other code needs to change; the function signature and return type remain the same.
- No new imports or helper methods are required; the fix uses built-in
String.prototype.replacewith regular expressions.
| @@ -137,7 +137,7 @@ | ||
| } | ||
|
|
||
| private buildPwshCommand(script: string): string { | ||
| return `pwsh -NoProfile -NonInteractive -Command "${script.replace(/"/g, '\\"')}"`; | ||
| return `pwsh -NoProfile -NonInteractive -Command "${script.replace(/\\/g, '\\\\').replace(/"/g, '\\"')}"`; | ||
| } | ||
|
|
||
| private buildInvokeCommand(remoteScript: string): string { |
| } | ||
|
|
||
| private buildInvokeCommand(remoteScript: string): string { | ||
| const escapedScript = remoteScript.replace(/"/g, '\\"').replace(/'/g, "''"); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 5 months ago
In general, the fix is to treat backslashes as meta-characters as well and escape them before escaping quotes, so that existing escape sequences in the input cannot “break out” of the quoting scheme. Since we are already using regex-based global replacements, we should add a first step that doubles backslashes (\ → \\), followed by the existing quote escaping. Ordering matters: if you escape quotes first and then backslashes, you might over-escape the backslashes you just introduced; escaping backslashes first is the standard approach.
For this specific file, the key change is in buildInvokeCommand at line 144. Instead of only calling .replace(/"/g, '\\"').replace(/'/g, "''") on remoteScript, introduce an additional .replace(/\\/g, '\\\\') at the beginning of the chain. This doubles all backslashes in the script before handling ", and ', ensuring that any backslash that might otherwise escape a quote in some layers is itself escaped consistently. We do not need new imports or helper methods; a direct change to the string replacement expression is sufficient. No other lines or files need to be modified.
| @@ -141,7 +141,10 @@ | ||
| } | ||
|
|
||
| private buildInvokeCommand(remoteScript: string): string { | ||
| const escapedScript = remoteScript.replace(/"/g, '\\"').replace(/'/g, "''"); | ||
| const escapedScript = remoteScript | ||
| .replace(/\\/g, '\\\\') | ||
| .replace(/"/g, '\\"') | ||
| .replace(/'/g, "''"); | ||
|
|
||
| if (this.transport === 'ssh') { | ||
| return `pwsh -NoProfile -NonInteractive -Command "Invoke-Command -HostName '${this.host}' -ScriptBlock { ${escapedScript} }"`; |
…e dependencies - GitHub Actions: max 4-hour polling with clear timeout error including run URL - GitLab CI: max 4-hour polling with clear timeout error including pipeline URL - Remote PowerShell: fix credential split to preserve passwords with colons (split on first colon only instead of all colons) - Remote PowerShell: throw clear error when credential format is invalid - Ansible: validate ansible-playbook binary exists in setupWorkflow (separate from ansible --version check) - All timeout errors use core.error() for GitHub Actions annotation visibility Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Actionable comments posted: 1
🧹 Nitpick comments (4)
src/model/orchestrator/providers/ansible/index.ts (1)
57-64: Good addition of ansible-playbook binary validation.The separate check for
ansible-playbookbinary (distinct fromansible --version) addresses the case where the binaries might be installed separately. Thecore.error()call ensures visibility in GitHub Actions annotations.However, the command uses shell OR operators (
||) which may not work consistently across all platforms:command -v ansible-playbook || which ansible-playbook || where ansible-playbookOn Windows,
command -vandwhichare not available, andwheremight succeed even if earlier commands fail with errors. Consider a simpler cross-platform approach:🛠️ Suggested alternative
- await OrchestratorSystem.Run('command -v ansible-playbook || which ansible-playbook || where ansible-playbook'); + await OrchestratorSystem.Run('ansible-playbook --version');Using
--versionverifies both existence and executability, similar to theansible --versioncheck above.🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@src/model/orchestrator/providers/ansible/index.ts` around lines 57 - 64, The cross-platform check using shell ORs in OrchestratorSystem.Run is brittle; replace the command invocation that verifies ansible-playbook with a platform-agnostic check that runs "ansible-playbook --version" via OrchestratorSystem.Run (same pattern used for the existing ansible --version check), log success with OrchestratorLogger.log on success, and keep the core.error + thrown Error in the catch block using the caught error’s message to preserve diagnostics.src/model/orchestrator/providers/remote-powershell/remote-powershell-provider.test.ts (1)
242-249: Consider adding test for empty host inlistResources.The test verifies that a configured host is returned as a resource, but doesn't test the edge case where
remotePowershellHostis empty. This would help catch the bug flagged in the implementation review.it('returns empty array when host is not configured', async () => { const params = createBuildParameters({ remotePowershellHost: '' }); provider = new RemotePowershellProvider(params); const resources = await provider.listResources(); expect(resources).toEqual([]); });🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@src/model/orchestrator/providers/remote-powershell/remote-powershell-provider.test.ts` around lines 242 - 249, Add a unit test for the empty-host edge case: createBuildParameters with remotePowershellHost set to an empty string, instantiate RemotePowershellProvider with those params, call listResources(), and assert it returns an empty array; this ensures listResources handles a blank remotePowershellHost rather than returning a configured resource.src/model/orchestrator/providers/github-actions/index.ts (1)
93-97: JSON escaping may be insufficient for complex input values.The escaping at line 97 only handles single quotes (
'), but theinputsJsoncould contain other shell-sensitive characters (e.g.,$, backticks, newlines) that may cause issues when passed togh api. Consider using a safer approach like writing the payload to a temp file and using--input:- const inputsJson = JSON.stringify(inputs).replace(/'/g, "'\\''"); + // Write inputs to temp file to avoid shell escaping issues + const inputsJson = JSON.stringify({ ref: this.ref, inputs });Alternatively, verify that the
gh apicommand properly handles the current escaping for all edge cases.🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@src/model/orchestrator/providers/github-actions/index.ts` around lines 93 - 97, The current escaping of inputsJson (created near beforeDispatch) only replaces single quotes and is unsafe for shell-sensitive characters; update the dispatch logic that builds inputsJson so it writes the JSON payload to a secure temp file (e.g., within the dispatch/workflow dispatch block) and pass that file to gh api using the --input/--raw-field option instead of inlining the string, ensure the temp file is created with safe permissions, used for the gh api request, and removed after the request (refer to the inputsJson variable and the workflow dispatch code path to locate the change).src/model/orchestrator/providers/gitlab-ci/index.ts (1)
110-110: Pipeline URL may be malformed for namespaced projects.Line 110 constructs the pipeline URL by directly interpolating
this.projectId, but for GitLab projects with namespaces (e.g.,my-group/my-project), the URL should use URL-encoded paths or the numeric project ID. The current construction would produce:https://gitlab.example.com/my-group/my-project/-/pipelines/123This happens to be valid for GitLab's URL routing, but
encodedProjectis already computed at line 76. For consistency and to handle edge cases with special characters in project names, consider using the encoded form or the numeric ID in the URL:- const pipelineUrl = `${this.apiUrl}/${this.projectId}/-/pipelines/${this.pipelineId}`; + const pipelineUrl = `${this.apiUrl}/${encodeURIComponent(this.projectId).replace(/%2F/g, '/')}/-/pipelines/${this.pipelineId}`;🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@src/model/orchestrator/providers/gitlab-ci/index.ts` at line 110, The pipelineUrl construction uses this.projectId directly which can break for namespaced or special-character project paths; change the interpolation to use the precomputed encodedProject (or the numeric project ID) instead of this.projectId so the URL becomes `${this.apiUrl}/${encodedProject}/-/pipelines/${this.pipelineId}` (or use the numeric ID) to ensure proper encoding and consistency with the earlier computed encodedProject.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@src/model/orchestrator/providers/remote-powershell/index.ts`:
- Around line 124-129: The listResources method creates and returns a
ProviderResource with Name set to this.host even when this.host is empty; update
listResources to check if this.host is falsy/empty and return an empty array
([]) in that case instead of creating a resource, otherwise construct and return
the ProviderResource as currently done (refer to listResources and
ProviderResource and this.host to locate the change).
---
Nitpick comments:
In `@src/model/orchestrator/providers/ansible/index.ts`:
- Around line 57-64: The cross-platform check using shell ORs in
OrchestratorSystem.Run is brittle; replace the command invocation that verifies
ansible-playbook with a platform-agnostic check that runs "ansible-playbook
--version" via OrchestratorSystem.Run (same pattern used for the existing
ansible --version check), log success with OrchestratorLogger.log on success,
and keep the core.error + thrown Error in the catch block using the caught
error’s message to preserve diagnostics.
In `@src/model/orchestrator/providers/github-actions/index.ts`:
- Around line 93-97: The current escaping of inputsJson (created near
beforeDispatch) only replaces single quotes and is unsafe for shell-sensitive
characters; update the dispatch logic that builds inputsJson so it writes the
JSON payload to a secure temp file (e.g., within the dispatch/workflow dispatch
block) and pass that file to gh api using the --input/--raw-field option instead
of inlining the string, ensure the temp file is created with safe permissions,
used for the gh api request, and removed after the request (refer to the
inputsJson variable and the workflow dispatch code path to locate the change).
In `@src/model/orchestrator/providers/gitlab-ci/index.ts`:
- Line 110: The pipelineUrl construction uses this.projectId directly which can
break for namespaced or special-character project paths; change the
interpolation to use the precomputed encodedProject (or the numeric project ID)
instead of this.projectId so the URL becomes
`${this.apiUrl}/${encodedProject}/-/pipelines/${this.pipelineId}` (or use the
numeric ID) to ensure proper encoding and consistency with the earlier computed
encodedProject.
In
`@src/model/orchestrator/providers/remote-powershell/remote-powershell-provider.test.ts`:
- Around line 242-249: Add a unit test for the empty-host edge case:
createBuildParameters with remotePowershellHost set to an empty string,
instantiate RemotePowershellProvider with those params, call listResources(),
and assert it returns an empty array; this ensures listResources handles a blank
remotePowershellHost rather than returning a configured resource.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: c7d4259a-394c-443d-b334-b9b6d4971a43
⛔ Files ignored due to path filters (2)
dist/index.jsis excluded by!**/dist/**dist/index.js.mapis excluded by!**/dist/**,!**/*.map
📒 Files selected for processing (8)
src/model/orchestrator/providers/ansible/ansible-provider.test.tssrc/model/orchestrator/providers/ansible/index.tssrc/model/orchestrator/providers/github-actions/github-actions-provider.test.tssrc/model/orchestrator/providers/github-actions/index.tssrc/model/orchestrator/providers/gitlab-ci/gitlab-ci-provider.test.tssrc/model/orchestrator/providers/gitlab-ci/index.tssrc/model/orchestrator/providers/remote-powershell/index.tssrc/model/orchestrator/providers/remote-powershell/remote-powershell-provider.test.ts
| async listResources(): Promise<ProviderResource[]> { | ||
| const resource = new ProviderResource(); | ||
| resource.Name = this.host; | ||
|
|
||
| return [resource]; | ||
| } |
There was a problem hiding this comment.
listResources returns a resource even when host is empty.
Unlike other methods that check for empty host, listResources unconditionally creates a resource with this.host as the name. If host is an empty string, this returns a resource with an empty name.
🛠️ Suggested fix
async listResources(): Promise<ProviderResource[]> {
+ if (!this.host) return [];
+
const resource = new ProviderResource();
resource.Name = this.host;
return [resource];
}🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/remote-powershell/index.ts` around lines 124
- 129, The listResources method creates and returns a ProviderResource with Name
set to this.host even when this.host is empty; update listResources to check if
this.host is falsy/empty and return an empty array ([]) in that case instead of
creating a resource, otherwise construct and return the ProviderResource as
currently done (refer to listResources and ProviderResource and this.host to
locate the change).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Actionable comments posted: 2
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@src/model/orchestrator/providers/provider-selection.test.ts`:
- Line 20: Fix the ESLint failures in provider-selection.test.ts by removing or
using any unused variables, renaming abbreviated identifiers to full words to
satisfy unicorn/prevent-abbreviations (e.g., rename short names like
params/opts/cfg to parameters/options/configuration where used in tests), and
adjust statement spacing to satisfy padding-line-between-statements (insert or
remove blank lines between blocks as required). Specifically review the test
variables declared around the symbol "params" and the other test variables at
the referenced locations (lines ~36, 53, 70, 87, 94, 114–126, 130) to either use
them in assertions, delete them if unnecessary, or rename them to
non-abbreviated identifiers; re-run ESLint and the unit tests to confirm all
lint rules pass before committing.
- Around line 85-127: The test builds a local strategies map and instantiates
provider classes directly instead of exercising the actual routing logic in
Orchestrator.setProvider, so replace the self-referential instantiation with
assertions that call Orchestrator.setProvider (or construct an Orchestrator and
invoke its setProvider method) for each strategy and then verify the resulting
provider instance/class name matches expectations; specifically, in
provider-selection.test update the test to pass BuildParameters into
Orchestrator, call Orchestrator.setProvider('remote-powershell' |
'github-actions' | 'gitlab-ci' | 'ansible'), then assert
orchestrator.provider.constructor.name equals
RemotePowershellProvider/GitHubActionsProvider/GitLabCIProvider/AnsibleProvider
and that all four strategies yield distinct classes.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: e1194180-0afb-4f56-bcae-66650954db0d
⛔ Files ignored due to path filters (1)
dist/index.js.mapis excluded by!**/dist/**,!**/*.map
📒 Files selected for processing (1)
src/model/orchestrator/providers/provider-selection.test.ts
| describe('Provider Selection', () => { | ||
| describe('remote-powershell provider', () => { | ||
| it('creates RemotePowershellProvider from build parameters', () => { | ||
| const params = { |
There was a problem hiding this comment.
Resolve lint errors in this test file before merge.
Static analysis is already flagging these lines (unicorn/prevent-abbreviations, no-unused-vars, padding-line-between-statements). Since they’re ESLint errors, they can block CI.
Suggested cleanup
- const params = {
+ const buildParameters = {
providerStrategy: 'remote-powershell',
remotePowershellHost: 'build-server.local',
remotePowershellTransport: 'wsman',
remotePowershellCredential: 'user:pass',
} as BuildParameters;
- const provider = new RemotePowershellProvider(params);
+ const provider = new RemotePowershellProvider(buildParameters);
- const params = {
+ const buildParameters = {
providerStrategy: 'github-actions',
githubActionsRepo: 'org/repo',
githubActionsWorkflow: 'ci.yml',
githubActionsToken: 'ghp_token',
githubActionsRef: 'main',
} as BuildParameters;
- const provider = new GitHubActionsProvider(params);
+ const provider = new GitHubActionsProvider(buildParameters);
- const params = {
+ const buildParameters = {
providerStrategy: 'gitlab-ci',
gitlabProjectId: 'group/project',
gitlabTriggerToken: 'glptt-token',
gitlabApiUrl: 'https://gitlab.com',
gitlabRef: 'main',
} as BuildParameters;
- const provider = new GitLabCIProvider(params);
+ const provider = new GitLabCIProvider(buildParameters);
- const params = {
+ const buildParameters = {
providerStrategy: 'ansible',
ansibleInventory: '/etc/ansible/hosts',
ansiblePlaybook: '/playbooks/build.yml',
ansibleExtraVars: '',
ansibleVaultPassword: '',
} as BuildParameters;
- const provider = new AnsibleProvider(params);
+ const provider = new AnsibleProvider(buildParameters);
- const strategies: Record<string, new (params: BuildParameters) => any> = {
+ const strategies: Record<string, new (...args: [BuildParameters]) => unknown> = {
'remote-powershell': RemotePowershellProvider,
'github-actions': GitHubActionsProvider,
'gitlab-ci': GitLabCIProvider,
ansible: AnsibleProvider,
};
- const params = {
+ const buildParameters = {
remotePowershellHost: 'host',
remotePowershellTransport: 'wsman',
remotePowershellCredential: '',
githubActionsRepo: 'org/repo',
githubActionsWorkflow: 'ci.yml',
githubActionsToken: 'token',
githubActionsRef: 'main',
gitlabProjectId: 'proj',
gitlabTriggerToken: 'tok',
gitlabApiUrl: 'https://gitlab.com',
gitlabRef: 'main',
ansibleInventory: '/inv',
ansiblePlaybook: '/pb.yml',
ansibleExtraVars: '',
ansibleVaultPassword: '',
} as BuildParameters;
const instances = Object.entries(strategies).map(([strategy, ProviderClass]) => {
- const provider = new ProviderClass(params);
+ const provider = new ProviderClass(buildParameters);
+
return { strategy, className: provider.constructor.name };
});
- const classNames = instances.map((i) => i.className);
+ const classNames = instances.map((instance) => instance.className);
const uniqueClassNames = new Set(classNames);
expect(uniqueClassNames.size).toBe(4);
- expect(instances.find((i) => i.strategy === 'remote-powershell')!.className).toBe('RemotePowershellProvider');
- expect(instances.find((i) => i.strategy === 'github-actions')!.className).toBe('GitHubActionsProvider');
- expect(instances.find((i) => i.strategy === 'gitlab-ci')!.className).toBe('GitLabCIProvider');
- expect(instances.find((i) => i.strategy === 'ansible')!.className).toBe('AnsibleProvider');
+ expect(instances.find((instance) => instance.strategy === 'remote-powershell')!.className).toBe('RemotePowershellProvider');
+ expect(instances.find((instance) => instance.strategy === 'github-actions')!.className).toBe('GitHubActionsProvider');
+ expect(instances.find((instance) => instance.strategy === 'gitlab-ci')!.className).toBe('GitLabCIProvider');
+ expect(instances.find((instance) => instance.strategy === 'ansible')!.className).toBe('AnsibleProvider');
- const params = {
+ const buildParameters = {
remotePowershellHost: 'host',
githubActionsRepo: 'org/repo',
githubActionsWorkflow: 'ci.yml',
githubActionsToken: 'token',
gitlabProjectId: 'proj',
gitlabTriggerToken: 'tok',
ansibleInventory: '/inv',
} as BuildParameters;
const providers = [
- new RemotePowershellProvider(params),
- new GitHubActionsProvider(params),
- new GitLabCIProvider(params),
- new AnsibleProvider(params),
+ new RemotePowershellProvider(buildParameters),
+ new GitHubActionsProvider(buildParameters),
+ new GitLabCIProvider(buildParameters),
+ new AnsibleProvider(buildParameters),
];Also applies to: 36-36, 53-53, 70-70, 87-87, 94-94, 114-114, 118-126, 130-130
🧰 Tools
🪛 ESLint
[error] 20-20: The variable params should be named parameters. A more descriptive name will do too.
(unicorn/prevent-abbreviations)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/provider-selection.test.ts` at line 20, Fix
the ESLint failures in provider-selection.test.ts by removing or using any
unused variables, renaming abbreviated identifiers to full words to satisfy
unicorn/prevent-abbreviations (e.g., rename short names like params/opts/cfg to
parameters/options/configuration where used in tests), and adjust statement
spacing to satisfy padding-line-between-statements (insert or remove blank lines
between blocks as required). Specifically review the test variables declared
around the symbol "params" and the other test variables at the referenced
locations (lines ~36, 53, 70, 87, 94, 114–126, 130) to either use them in
assertions, delete them if unnecessary, or rename them to non-abbreviated
identifiers; re-run ESLint and the unit tests to confirm all lint rules pass
before committing.
| describe('provider strategy routing', () => { | ||
| it('each provider strategy maps to a distinct provider class', () => { | ||
| const strategies: Record<string, new (params: BuildParameters) => any> = { | ||
| 'remote-powershell': RemotePowershellProvider, | ||
| 'github-actions': GitHubActionsProvider, | ||
| 'gitlab-ci': GitLabCIProvider, | ||
| ansible: AnsibleProvider, | ||
| }; | ||
|
|
||
| const params = { | ||
| remotePowershellHost: 'host', | ||
| remotePowershellTransport: 'wsman', | ||
| remotePowershellCredential: '', | ||
| githubActionsRepo: 'org/repo', | ||
| githubActionsWorkflow: 'ci.yml', | ||
| githubActionsToken: 'token', | ||
| githubActionsRef: 'main', | ||
| gitlabProjectId: 'proj', | ||
| gitlabTriggerToken: 'tok', | ||
| gitlabApiUrl: 'https://gitlab.com', | ||
| gitlabRef: 'main', | ||
| ansibleInventory: '/inv', | ||
| ansiblePlaybook: '/pb.yml', | ||
| ansibleExtraVars: '', | ||
| ansibleVaultPassword: '', | ||
| } as BuildParameters; | ||
|
|
||
| const instances = Object.entries(strategies).map(([strategy, ProviderClass]) => { | ||
| const provider = new ProviderClass(params); | ||
| return { strategy, className: provider.constructor.name }; | ||
| }); | ||
|
|
||
| // Verify all four strategies produce different provider classes | ||
| const classNames = instances.map((i) => i.className); | ||
| const uniqueClassNames = new Set(classNames); | ||
| expect(uniqueClassNames.size).toBe(4); | ||
|
|
||
| // Verify expected mapping | ||
| expect(instances.find((i) => i.strategy === 'remote-powershell')!.className).toBe('RemotePowershellProvider'); | ||
| expect(instances.find((i) => i.strategy === 'github-actions')!.className).toBe('GitHubActionsProvider'); | ||
| expect(instances.find((i) => i.strategy === 'gitlab-ci')!.className).toBe('GitLabCIProvider'); | ||
| expect(instances.find((i) => i.strategy === 'ansible')!.className).toBe('AnsibleProvider'); | ||
| }); |
There was a problem hiding this comment.
Routing test is self-referential and misses the real selection path.
Line 87-Line 127 builds a local strategies map and instantiates those classes directly, so it never exercises Orchestrator.setProvider (the real switch in src/model/orchestrator/orchestrator.ts, Line 137-Line 186). A regression in orchestrator routing would still pass this test.
🧰 Tools
🪛 ESLint
[error] 87-87: 'params' is defined but never used.
(no-unused-vars)
[error] 87-87: The variable params should be named parameters. A more descriptive name will do too.
(unicorn/prevent-abbreviations)
[error] 94-94: The variable params should be named parameters. A more descriptive name will do too.
(unicorn/prevent-abbreviations)
[error] 114-114: Expected blank line before this statement.
(padding-line-between-statements)
[error] 118-118: The variable i should be named index. A more descriptive name will do too.
(unicorn/prevent-abbreviations)
[error] 123-123: The variable i should be named index. A more descriptive name will do too.
(unicorn/prevent-abbreviations)
[error] 124-124: The variable i should be named index. A more descriptive name will do too.
(unicorn/prevent-abbreviations)
[error] 125-125: The variable i should be named index. A more descriptive name will do too.
(unicorn/prevent-abbreviations)
[error] 126-126: The variable i should be named index. A more descriptive name will do too.
(unicorn/prevent-abbreviations)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/model/orchestrator/providers/provider-selection.test.ts` around lines 85
- 127, The test builds a local strategies map and instantiates provider classes
directly instead of exercising the actual routing logic in
Orchestrator.setProvider, so replace the self-referential instantiation with
assertions that call Orchestrator.setProvider (or construct an Orchestrator and
invoke its setProvider method) for each strategy and then verify the resulting
provider instance/class name matches expectations; specifically, in
provider-selection.test update the test to pass BuildParameters into
Orchestrator, call Orchestrator.setProvider('remote-powershell' |
'github-actions' | 'gitlab-ci' | 'ansible'), then assert
orchestrator.provider.constructor.name equals
RemotePowershellProvider/GitHubActionsProvider/GitLabCIProvider/AnsibleProvider
and that all four strategies yield distinct classes.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #806 +/- ##
==========================================
+ Coverage 31.25% 35.98% +4.73%
==========================================
Files 84 90 +6
Lines 4563 4930 +367
Branches 1103 1176 +73
==========================================
+ Hits 1426 1774 +348
- Misses 3137 3156 +19
🚀 New features to boost your workflow:
|
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In @.github/workflows/build-tests-mac.yml:
- Line 15: The workflow currently sets continue-on-error: true for the
buildForAllPlatformsMacOS job (and uses fail-fast: false), which masks MacOS
build failures; remove or set continue-on-error to false for
buildForAllPlatformsMacOS, or replace it with a retry strategy like the Ubuntu
job pattern (add a strategy: { fail-fast: false, max-parallel: ... } plus a
retry/attempts mechanism) and/or add a clear comment documenting why failures
are being ignored and a ticket to re-enable strict failure behavior before
merge; reference the continue-on-error setting and the buildForAllPlatformsMacOS
job when making the change.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
Run ID: cbce2e31-3ae7-4f37-b9ec-5756d1c9bd14
📒 Files selected for processing (1)
.github/workflows/build-tests-mac.yml
| buildForAllPlatformsMacOS: | ||
| name: ${{ matrix.targetPlatform }} on ${{ matrix.unityVersion }} | ||
| runs-on: macos-latest | ||
| continue-on-error: true |
There was a problem hiding this comment.
Adding continue-on-error: true silently masks all MacOS build failures.
This change causes the workflow to report success even when the buildForAllPlatformsMacOS job fails. Combined with fail-fast: false, CI will show a green status regardless of whether any MacOS builds succeed, effectively disabling failure detection for this entire job.
This appears unrelated to the PR's stated objectives (adding orchestrator providers). If MacOS builds are flaky, consider:
- Fixing the underlying flakiness.
- Adding retry logic (similar to the Ubuntu workflow pattern).
- At minimum, document why failures should be ignored.
If this is intentional to unblock the PR while builds are unstable, consider reverting before merge or tracking as tech debt.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In @.github/workflows/build-tests-mac.yml at line 15, The workflow currently
sets continue-on-error: true for the buildForAllPlatformsMacOS job (and uses
fail-fast: false), which masks MacOS build failures; remove or set
continue-on-error to false for buildForAllPlatformsMacOS, or replace it with a
retry strategy like the Ubuntu job pattern (add a strategy: { fail-fast: false,
max-parallel: ... } plus a retry/attempts mechanism) and/or add a clear comment
documenting why failures are being ignored and a ticket to re-enable strict
failure behavior before merge; reference the continue-on-error setting and the
buildForAllPlatformsMacOS job when making the change.
The orchestrator-develop branch no longer exists. Update all fallback clone commands and test fixtures to use main instead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Closing — all orchestrator code has been extracted to the standalone Content from this PR (PowerShell, GitHub Actions, GitLab CI, Ansible providers) is fully present in the orchestrator repo. See PR #819 for the extraction. |
…#819) * feat(orchestrator): enterprise feature support — CLI provider, submodule profiles, caching, LFS, hooks Add generic enterprise-grade features to the orchestrator, enabling Unity projects with complex CI/CD pipelines to adopt game-ci/unity-builder with built-in support for: - CLI provider protocol: JSON-over-stdin/stdout bridge enabling providers in any language (Go, Python, Rust, shell) via the `providerExecutable` input - Submodule profiles: YAML-based selective submodule initialization with glob patterns and variant overlays (`submoduleProfilePath`, `submoduleVariantPath`) - Local build caching: Filesystem-based Library and LFS caching for local builds without external cache actions (`localCacheEnabled`, `localCacheRoot`) - Custom LFS transfer agents: Register external transfer agents like elastic-git-storage (`lfsTransferAgent`, `lfsTransferAgentArgs`, `lfsStoragePaths`) - Git hooks support: Detect and install lefthook/husky with configurable skip lists (`gitHooksEnabled`, `gitHooksSkipList`) Also removes all `orchestrator-develop` branch references, replacing with `main`. 13 new action inputs, 13 new files, 14 new CLI provider tests, 17 submodule tests, plus cache/LFS/hooks unit tests. All 452 tests pass. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): add experimental GCP Cloud Run and Azure ACI providers Add two new cloud provider implementations for the orchestrator, both marked as experimental: - **GCP Cloud Run Jobs** (`providerStrategy: gcp-cloud-run`): Executes Unity builds as Cloud Run Jobs with GCS FUSE for large artifact storage. Supports configurable machine types, service accounts, and VPC connectors. 7 new inputs (gcpProject, gcpRegion, gcpBucket, gcpMachineType, gcpDiskSizeGb, gcpServiceAccount, gcpVpcConnector). - **Azure Container Instances** (`providerStrategy: azure-aci`): Executes Unity builds as ACI containers with Azure File Shares (Premium FileStorage) for large artifact storage up to 100 TiB. Supports configurable CPU/memory, VNet integration, and subscription targeting. 9 new inputs (azureResourceGroup, azureLocation, azureStorageAccount, azureFileShareName, azureSubscriptionId, azureCpu, azureMemoryGb, azureDiskSizeGb, azureSubnetId). Both providers use their respective CLIs (gcloud, az) for infrastructure management and support garbage collection of old build resources. No tests included as these require real cloud infrastructure to validate. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): multi-storage support for GCP and Azure providers Both providers now support four storage backends via gcpStorageType / azureStorageType: GCP Cloud Run: - gcs-fuse: Mount GCS bucket as POSIX filesystem (unlimited, best for large sequential I/O) - gcs-copy: Copy artifacts in/out via gsutil (simpler, no FUSE overhead) - nfs: Filestore NFS mount (true POSIX, good random I/O, up to 100 TiB) - in-memory: tmpfs (fastest, volatile, up to 32 GiB) Azure ACI: - azure-files: SMB file share mount (up to 100 TiB, premium throughput) - blob-copy: Copy artifacts in/out via az storage blob (no mount overhead) - azure-files-nfs: NFS 4.1 file share mount (true POSIX, no SMB lock overhead) - in-memory: emptyDir tmpfs (fastest, volatile, limited by container memory) New inputs: gcpStorageType, gcpFilestoreIp, gcpFilestoreShare, azureStorageType, azureBlobContainer. Constructor validates storage config and warns on missing prerequisites (e.g. NFS requires VPC connector/subnet). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): automatic provider fallback with runner availability check Adds built-in load balancing: check GitHub runner availability before builds start, auto-route to a fallback provider when runners are busy or offline. Eliminates the need for a separate check-runner job. New inputs: fallbackProviderStrategy, runnerCheckEnabled, runnerCheckLabels, runnerCheckMinAvailable. Outputs providerFallbackUsed and providerFallbackReason for workflow visibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): add retry-on-fallback and provider init timeout Adds retryOnFallback (retry failed builds on alternate provider) and providerInitTimeout (swap provider if init takes too long). Refactors run() into run()/runWithProvider() to support retry loop. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: format changed files with prettier Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test(orchestrator): expand local cache service test coverage Adds tests for cache hit restore (picks latest tar), LFS cache restore/save, garbage collection age filtering, and edge cases like permission errors and empty directories. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test(orchestrator): add runner availability service tests Covers: no token skip, no runners fallback, busy/offline runners, label filtering (case-insensitive), minAvailable threshold, fail-open on API error, mixed runner states. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test(orchestrator): add unit tests for untested core services Adds 64 new mock-based unit tests covering orchestrator services that previously had zero test coverage: - TaskParameterSerializer: env var format conversion, round-trip, uniqBy deduplication, blocked params, default secrets - FollowLogStreamService: build output message parsing — end of transmission, build success/failure detection, error accumulation, Library rebuild detection - OrchestratorNamespace (guid): GUID generation format, platform name normalization, nanoid uniqueness - OrchestratorFolders: path computation for all folder getters, ToLinuxFolder conversion, repo URL generation, purge flag detection All tests are pure mock-based and run without any external infrastructure (no LocalStack, K8s, Docker, or AWS). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci(orchestrator): add fast unit test gate to integrity workflow Adds a fast-fail unit test step at the top of orchestrator-integrity, right after yarn install and before any infrastructure setup (k3d, LocalStack). Runs 113 mock-based orchestrator tests in ~5 seconds. If serialization, path computation, log parsing, or provider loading is broken, the workflow fails immediately instead of spending 30+ minutes setting up LocalStack and k3d clusters. Tests included: orchestrator-guid, orchestrator-folders, task-parameter-serializer, follow-log-stream-service, runner-availability-service, provider-url-parser, provider-loader, provider-git-manager, orchestrator-image, orchestrator-hooks, orchestrator-github-checks. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test(orchestrator): expand unit tests for enterprise services Add comprehensive tests for CLI provider (cleanupWorkflow, garbageCollect, listWorkflow, watchWorkflow, stderr forwarding, timeout handling), local cache service (saveLfsCache full path and error handling), git hooks service (husky install, failure logging, edge cases), and LFS agent service (empty storagePaths, validate logging). 73 tests across 4 test files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(orchestrator): use http.extraHeader for secure git authentication Replace token-in-URL pattern with http.extraHeader for git clone and LFS operations. The token no longer appears in clone URLs, git remote config, or process command lines. Add gitAuthMode input (default: 'header', legacy: 'url') so users can fall back to the old behavior if needed. Closes #785 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): add premade secret sources and YAML definitions Add SecretSourceService with premade secret source integrations: - aws-secrets-manager (with --query SecretString for direct value) - aws-parameter-store (with --with-decryption) - gcp-secret-manager (latest version) - azure-key-vault (via $AZURE_VAULT_NAME env var) - env (environment variables, no shell command needed) - Custom commands (any string with {0} placeholder) - YAML file definitions for custom sources Add secretSource input that takes precedence over inputPullCommand. Backward compatible — existing inputPullCommand behavior unchanged. Closes #776 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(secrets): add HashiCorp Vault as first-class premade secret source Adds three Vault entries: hashicorp-vault (KV v2), hashicorp-vault-kv1 (KV v1), and vault (short alias). Uses VAULT_ADDR for server address and VAULT_MOUNT env var for configurable mount path (defaults to 'secret'). Refs #776 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(lfs): add built-in elastic-git-storage support with auto-install First-class support for elastic-git-storage as a custom LFS transfer agent. When lfsTransferAgent is set to "elastic-git-storage" (or "elastic-git-storage@v1.0.0" for a specific version), the service automatically finds or installs the agent from GitHub releases, then configures it via git config. Supports version pinning via @Version suffix in the agent value, eliminating the need for a separate version parameter. Platform and architecture detection handles linux/darwin/windows on amd64/arm64. 37 unit tests covering detection, PATH lookup, installation, version parsing, and configuration delegation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(hooks): add Unity Git Hooks integration and runHookGroups Built-in support for Unity Git Hooks (com.frostebite.unitygithooks): - Auto-detect UPM package in Packages/manifest.json - Run init-unity-lefthook.js before hook installation - Set CI-friendly env vars (disable background project mode) New gitHooksRunBeforeBuild input runs specific lefthook groups before the Unity build, allowing CI to trigger pre-commit or pre-push checks that normally only fire on git events. 35 unit tests covering detection, init, CI env, group execution, and failure handling. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): add test workflow engine placeholder Initial scaffold for the test workflow engine service directory. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): add hot runner protocol placeholder Initial scaffold for the runner registration and hot editor provider module. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): generic artifact system — output types, manifests, and collection service Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): incremental sync protocol — git delta, direct input, and storage-backed sync Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: community plugin validation workflow (#800) Add scheduled workflow that validates community Unity packages compile and build correctly using unity-builder. Runs weekly on Sunday. Includes: - YAML plugin registry (community-plugins.yml) for package listings - Matrix expansion across plugins and platforms - Automatic failure reporting via GitHub issues - Manual trigger with plugin filter and Unity version override Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): CI platform providers — Remote PowerShell, GitHub Actions, GitLab CI, Ansible Add four new providers that delegate builds to external CI platforms: - remote-powershell: Execute on remote machines via WinRM/SSH - github-actions: Dispatch workflow_dispatch on target repository - gitlab-ci: Trigger pipeline via GitLab API - ansible: Run playbooks against managed inventory Each follows the CI-as-a-provider pattern: trigger remote job, pass build parameters, stream logs, report status. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: fix prettier formatting and eslint errors on test files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(orchestrator): build reliability features — git integrity, reserved filename cleanup, archival Add three optional reliability features for hardening CI pipelines: - Git corruption detection & recovery (fsck, stale lock cleanup, submodule backing store validation, auto-recovery) - Reserved filename cleanup (removes Windows device names that cause Unity asset importer infinite loops) - Build output archival with configurable retention policy All features are opt-in and fail gracefully with warnings only. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(reliability): implement build reliability service with git integrity, reserved filename cleanup, and build archival Adds BuildReliabilityService with the following capabilities: - checkGitIntegrity(): runs git fsck --no-dangling and parses output for corruption - cleanStaleLockFiles(): removes stale .lock files older than 10 minutes - validateSubmoduleBackingStores(): validates .git files point to valid backing stores - recoverCorruptedRepo(): orchestrates fsck, lock cleanup, re-fetch, retry fsck - cleanReservedFilenames(): removes Windows reserved filenames (con, prn, aux, nul, com1-9, lpt1-9) - archiveBuildOutput(): creates tar.gz archive of build output - enforceRetention(): deletes archives older than retention period - configureGitEnvironment(): sets GIT_TERMINAL_PROMPT=0, http.postBuffer, core.longpaths Wired into action.yml as opt-in inputs, with pre-build integrity checks and post-build archival in the main entry point. Includes 29 unit tests covering success and failure cases for all methods. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test(providers): add comprehensive unit tests for GitHub Actions, GitLab CI, PowerShell, and Ansible providers (#806) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(hot-runner): implement hot runner protocol with registry, health monitoring, and job dispatch (#791) Adds persistent Unity editor instance support to reduce build iteration time by eliminating cold-start overhead. Includes: - HotRunnerTypes: interfaces for config, status, job request/result, transport - HotRunnerRegistry: in-memory runner management with file-based persistence - HotRunnerHealthMonitor: periodic health checks, idle recycling, job-count recycling - HotRunnerDispatcher: job routing with wait-for-runner, timeout, and output streaming - HotRunnerService: high-level API integrating registry, health, and dispatch - 34 unit tests covering registration, filtering, health, dispatch, timeout, fallback - action.yml inputs for hot runner configuration (7 new inputs) - Input/BuildParameters integration for hot runner settings - index.ts wiring with cold-build fallback when hot runner unavailable Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(artifacts): complete generic artifact system with upload handlers, tests, and action integration (#798) - Add ArtifactUploadHandler with support for github-artifacts, storage (rclone), and local copy upload targets, including large file chunking for GitHub Artifacts - Add 44 unit tests covering OutputTypeRegistry, OutputService, and ArtifactUploadHandler (config parsing, upload coordination, file collection) - Add 6 new action.yml inputs for artifact configuration - Add artifactManifestPath action output - Wire artifact collection and upload into index.ts post-build flow Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(testing): implement test workflow engine with YAML suites, taxonomy filtering, and structured results (#790) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(sync): complete incremental sync protocol with storage-pull, state management, and tests (#799) - Add storage-pull strategy: rclone-based sync from remote storage with overlay and clean modes, URI parsing (storage://remote:bucket/path), transfer parallelism, and automatic rclone availability checking - Add SyncStateManager: persistent state load/save with configurable paths, workspace hash calculation via SHA-256 of key project files, and drift detection for external modification awareness - Add action.yml inputs: syncStrategy, syncInputRef, syncStorageRemote, syncRevertAfter, syncStatePath with sensible defaults - Wire sync into Input (5 getters), BuildParameters (5 fields), index.ts (local build path), and RemoteClient (orchestrator path) with post-job overlay revert when syncRevertAfter is true - Add 42 unit tests covering all strategies, URI parsing, state management, hash calculation, drift detection, error handling, and edge cases (missing rclone, invalid URIs, absent state, empty diffs) - Add root:true to eslintrc to prevent plugin resolution conflicts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(cache): add child workspace isolation for multi-product CI builds (#777) Implement two-level workspace isolation pattern for enterprise-scale CI: - Atomic O(1) workspace restore via filesystem move (no tar/download/extract) - Separate Library caching for independent restore - .git preservation for delta operations - Stale workspace cleanup with configurable retention policies - 5 new action inputs: childWorkspacesEnabled, childWorkspaceName, childWorkspaceCacheRoot, childWorkspacePreserveGit, childWorkspaceSeparateLibrary - 28 unit tests covering all service methods This enables enterprise CI where workspaces are 50GB+ and traditional caching via actions/cache is impractical. On NTFS, workspace restore is O(1) via atomic rename when source and destination are on the same volume. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(testing): use async exec for parallel test group execution Replace execSync with promisified exec so Promise.all actually runs test groups in parallel. Add native timeout support via exec options. Add 50MB maxBuffer for large Unity output. Fix ESLint violations (variable naming, padding lines, array push consolidation). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli-provider): add timeout protection for external CLI processes Prevent builds from hanging indefinitely when CLI provider subprocess is unresponsive. Default 2h for runTaskInWorkflow, 1h for watchWorkflow. Graceful SIGTERM with 10s grace before SIGKILL. - Added RUN_TASK_TIMEOUT_MS (2 hours) and WATCH_WORKFLOW_TIMEOUT_MS (1 hour) - Added gracefulKill helper: SIGTERM first, SIGKILL after 10s grace period - runTaskInWorkflow and watchWorkflow now have timeout protection - Existing execute() method upgraded to use gracefulKill - core.error() called with clear human-readable timeout message - Added comprehensive tests: timeout triggers, SIGKILL escalation, grace period cancellation on voluntary exit, normal completion Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(secrets): prevent shell injection in secret key names and mask values - Validate secret key names against alphanumeric allowlist before shell interpolation - Apply validation in both SecretSourceService.fetchSecret() and legacy queryOverride() - Mask fetched secret values with core.setSecret() to prevent log exposure - Add 20 new tests for validation and masking Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: rebuild dist for cli-provider timeout changes Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(artifacts): validate rclone availability before storage upload Check for rclone binary before attempting storage-based uploads. Validate storage destination URI format (remoteName:path). Provide clear error message with install link when rclone is missing. Fail gracefully instead of cryptic ENOENT crash. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(load-balancing): add pagination limits and rate-limit detection Cap pagination at 100 pages (10,000 runners max), detect GitHub API rate limiting (403/429) with reset time reporting, add 30-second total timeout for pagination loop. Log clear diagnostic when no runners found suggesting possible causes (token permissions, runner registration). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(reliability): add disk space validation before build archival Check available disk space (cross-platform: wmic/df) before archive operations to prevent data loss on full disks. Skip archival with warning if insufficient space (10% safety margin). Clean up partial archives on tar failure. Proceed with warning when space check fails. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(hot-runner): validate persisted registry state and add dispatcher safeguards Validate runner entries when loading from hot-runners.json. Discard corrupted entries with warnings. Add validateAndRepair() method for runtime recovery. Validate data before persisting to prevent writing corrupt state. Handle corrupt persistence files (invalid JSON) gracefully. Rewrite executeWithTimeout using Promise.race to clean up transport connections on timeout. Fix pre-existing ESLint violations in dispatcher and test files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(providers): add polling timeouts, fix credential parsing, validate dependencies - GitHub Actions: max 4-hour polling with clear timeout error including run URL - GitLab CI: max 4-hour polling with clear timeout error including pipeline URL - Remote PowerShell: fix credential split to preserve passwords with colons (split on first colon only instead of all colons) - Remote PowerShell: throw clear error when credential format is invalid - Ansible: validate ansible-playbook binary exists in setupWorkflow (separate from ansible --version check) - All timeout errors use core.error() for GitHub Actions annotation visibility Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: rebuild dist for provider timeout and credential fixes Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: prettier formatting for orchestrator-folders-auth test Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: split orchestrator integrity into parallel jobs for faster validation Rewrite the monolith orchestrator-integrity.yml (1110 lines, single job, 3+ hour sequential execution) into 4 parallel jobs that run on separate runners: - k8s-tests: k3d cluster + LocalStack, 5 tests - aws-provider-tests: LocalStack only, 10 tests - local-docker-tests: Docker + LocalStack for S3 tests, 9 tests - rclone-tests: rclone + LocalStack, 1 test Key improvements: - Wall-clock time drops from ~3h to ~1h (longest single job) - Disk exhaustion eliminated: each job gets its own fresh 14GB runner - Cleanup logic deduplicated via sourced shell functions instead of 15 copy-pasted 30-line blocks - K3d node image cleanup only runs in the k8s job (where it matters) - Light cleanup (cache + docker prune -f) between tests; heavy cleanup (prune -af --volumes) only at job boundaries - workflow_call interface unchanged; integrity-check.yml needs no changes Ref: #794 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: fix prettier formatting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: fix prettier formatting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: fix prettier formatting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: fix prettier formatting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: fix prettier formatting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: add official game-ci CLI with build, activate, and orchestrate commands Introduces a yargs-based CLI entry point (src/cli.ts) distributed as the `game-ci` command. The CLI reuses existing unity-builder modules — Input, BuildParameters, Orchestrator, Docker, MacBuilder — so the same build engine powers both the GitHub Action and the standalone CLI. Commands: build, activate, orchestrate, cache (list/restore/clear), status, version. Closes #812 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(cli): add npm publish workflow and CLI tests Add .github/workflows/publish-cli.yml for publishing the CLI to npm on release or via manual workflow_dispatch with dry-run support. Add comprehensive test coverage for the CLI: - input-mapper.test.ts: 16 tests covering argument mapping, boolean conversion, yargs internal property filtering, and Cli.options population - commands.test.ts: 26 tests verifying command exports, builder flags, default values, and camelCase aliases for all six commands - cli-integration.test.ts: 8 integration tests spawning the CLI process to verify help output, version info, and error handling Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(cli): add release workflow, install scripts, and self-update command Replace the npm-only publish-cli.yml with a comprehensive release-cli.yml that builds standalone binaries via pkg for all platforms (Linux/macOS/Windows, x64/arm64), uploads them as GitHub Release assets with SHA256 checksums, and retains npm publish as an optional job. Add curl-pipe-sh installer (install.sh) and PowerShell installer (install.ps1) for one-liner installation from GitHub Releases. Both scripts auto-detect platform/architecture, verify checksums, and guide PATH configuration. Add `game-ci update` command for self-updating standalone binaries: checks GitHub releases for newer versions, downloads the correct platform binary, verifies it, and atomically replaces the running executable. Distribution strategy: GitHub Releases (primary), npm (optional), with winget/Homebrew/Chocolatey/Scoop as future providers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(cli): address review findings — exit codes, missing inputs, null safety - Add process.exit(1) in cli.ts catch block so failures produce non-zero exit codes - Add 6 missing build inputs: containerRegistryRepository, containerRegistryImageVersion, dockerIsolationMode, sshPublicKeysDirectoryPath, cacheUnityInstallationOnMac, unityHubVersionOnMac - Add 6 missing orchestrate inputs: kubeStorageClass, readInputFromOverrideList, readInputOverrideCommand, postBuildSteps, preBuildSteps, customJob - Fix activate command description to accurately reflect verification behavior - Add null check before accessing result.BuildResults in orchestrate handler Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: split orchestrator integrity into 4 parallel jobs to fix timeout The monolithic orchestrator-integrity workflow runs 25+ tests sequentially in a single job, consistently hitting the 60-minute timeout on PR runs. Split into 4 parallel jobs (k8s, aws-provider, local-docker, rclone) each on its own runner, cutting wall-clock time from 3+ hours to ~1 hour and eliminating disk space exhaustion from shared runner contention. Adopts the parallel architecture from PR #809. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: add integration branch update scripts for release/lts-2.0.0 * ci: set macOS builds to continue-on-error Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: add release/lts-infrastructure to update-all script * ci: set macOS builds to continue-on-error Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: make git hooks opt-in only — do not modify hooks when disabled Remove the else branch that actively called GitHooksService.disableHooks() for every user where gitHooksEnabled was false (the default). This was a breaking change that silently modified core.hooksPath to point at an empty directory, disabling any existing git hooks (husky, lefthook, pre-commit, etc.). When gitHooksEnabled is false (default), the action now does nothing regarding hooks — exactly matching the behavior on main before the hooks feature was added. The hooks feature only activates when users explicitly set gitHooksEnabled: true. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test: add integration wiring and input parsing tests for enterprise features Add three test files covering the two highest-priority gaps in PR #777: 1. src/index-enterprise-features.test.ts (21 tests) - Integration wiring tests for index.ts that verify conditional gating of all enterprise services (GitHooks, LocalCache, ChildWorkspace, SubmoduleProfile, LfsAgent). Tests that disabled features (default) are never invoked, enabled features call the correct service methods, and the order of operations is correct (restore before build, save after build). Also tests non-local provider strategy skips all enterprise features. 2. src/model/enterprise-inputs.test.ts (103 tests) - Input/BuildParameters wiring tests for all 20 new enterprise properties. Covers defaults, explicit values, and boolean string parsing edge cases (the #1 source of bugs: 'false' as truthy, 'TRUE' case sensitivity, '1', 'yes'). Verifies BuildParameters.create() correctly maps all Input getters. 3. src/model/orchestrator/services/submodule/submodule-profile-service.test.ts (5 new tests) - Command construction safety tests for execute(), documenting how paths, branches, and tokens are passed into git commands and verifying the expected command strings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: mark failed macOS builds as neutral instead of failure Use the Checks API to flip failed macOS build conclusions to neutral (gray dash) so unstable builds don't show red X marks on PRs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * revert: restore build-tests-mac.yml to match main Stop modifying the macOS build workflow — leave it identical to main. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(test): add gitAuthMode to orchestrator-folders test mock The test mock was missing gitAuthMode, causing useHeaderAuth to default to true and strip the token from repo URLs. Adding gitAuthMode: 'url' restores the expected URL-mode behavior. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): bump node version to 20 in integrity-check yargs@18.0.0 requires Node >=20.19.0, so Node 18 is no longer compatible. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: downgrade yargs to ^17.7.2 and revert Node to 18 for CI compatibility yargs@18 requires Node >=20.19.0 which is incompatible with CI's Node 18. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor(cli): move cache command under orchestrate subcommand Cache is an orchestrator feature, so it belongs under `game-ci orchestrate cache` rather than as a top-level `game-ci cache` command. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: add orchestrator compatibility validation workflow Runs on PRs that touch orchestrator source or bridge files. Validates: - Orchestrator source files are in sync with standalone repo - Bridge file exports exist in both repos - Orchestrator tests pass in both unity-builder and standalone contexts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: route orchestrator through plugin loader Replace 8 direct orchestrator service imports with a thin plugin loader. - loadOrchestrator(): loads remote build orchestration - loadEnterpriseServices(): loads enterprise features for local builds All functionality is preserved; only the import mechanism changes. This is the first step toward making orchestrator an optional dependency. Includes comprehensive integration tests for enterprise feature wiring that verify gating logic, call ordering, and provider strategy routing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: extract orchestrator — delete 30k lines, decouple all imports Remove the entire src/model/orchestrator/ directory (148 files, ~30k lines) and refactor all dependent code to use the plugin loader pattern. Key changes: - build-parameters.ts: replace OrchestratorOptions with Input.getInput() - input.ts: remove OrchestratorQueryOverride input source - github.ts: strip to minimal class (only githubInputEnabled remains) - cli/cli.ts: remove orchestrator CLI commands, simplify to core structure - input-readers/*: replace OrchestratorSystem.Run with child_process.exec - orchestrator-plugin.ts: import from @game-ci/orchestrator package - orchestrate.ts, build.ts: use plugin loader instead of direct imports - index.ts: inline SyncStrategy type, fix implicit any types - Add type declarations for @game-ci/orchestrator - Remove orchestrator-only npm dependencies (AWS SDK, K8s, etc.) - Remove orchestrator-specific npm scripts and CI workflows - Update validate-orchestrator.yml for external repo validation All enterprise features gracefully degrade when @game-ci/orchestrator is not installed — the plugin loader returns undefined and optional chaining in index.ts skips all enterprise service calls. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: move CLI to orchestrator, fix validate-orchestrator workflow - Delete src/cli.ts, src/cli/ (commands, tests, input-mapper) — moved to game-ci/orchestrator repo (PR #813 reference) - Delete .github/workflows/release-cli.yml — moved to orchestrator - Remove bin, pkg, yargs, @types/yargs, pkg from package.json - Fix validate-orchestrator.yml: - Build TypeScript before running require() smoke tests - Remove || echo fallback that swallowed errors - Add smoke test that installs orchestrator via npm pack and verifies loadOrchestrator() returns defined exports Legacy src/model/cli/ (Cli class, CliFunctionsRepository) preserved — used by Input.getInput() and build-parameters.ts on main. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): remove reference to deleted orchestrator-integrity.yml The orchestrator job in integrity-check.yml called the deleted orchestrator-integrity.yml workflow, causing CI failure. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): use --legacy-peer-deps for orchestrator install in validation The orchestrator package brings eslint dependencies that conflict with unity-builder's peer deps. Since this install is only for smoke-testing the plugin loader, --legacy-peer-deps is safe here. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: remove temporary delete-me scripts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat(ci): add orchestrator integration tests and plugin interface tests - Add validate-orchestrator-integration.yml with 3 parallel jobs: plugin-interface (unit tests + smoke tests), k8s-integration (k3d + localstack), and aws-integration (localstack only) - Add orchestrator-plugin.test.ts with 15 unit tests covering loadOrchestrator() and loadEnterpriseServices() for both installed and not-installed states - Disk space management follows proven patterns from orchestrator repo (parallel jobs, aggressive cleanup between tests) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): add build step to k8s and aws integration jobs The orchestrator tests need compiled output (dist/index.js) to exist before running integration tests that spawn containers/k8s jobs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): add refactor/** branch pattern and workflow_dispatch to orchestrator workflows The refactor/orchestrator-extraction branch was not matching the feature/** pattern, preventing the integration workflow from running after fix commits were pushed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor(ci): split orchestrator tests into per-PR health checks and nightly exhaustive suite validate-orchestrator.yml (per-PR, ~5 min): - Plugin architecture health: compilation, unit tests, plugin loader graceful degradation, installed service validation, type declaration checks validate-orchestrator-integration.yml (daily 3 AM UTC cron, ~1-2h): - 5 parallel jobs mirroring orchestrator-integrity.yml: plugin-interface, k8s (5 tests), aws (10 tests), local-docker (9 tests), rclone (1 test) - Full LocalStack + k3d integration coverage - continue-on-error on known flaky end2end tests Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: add yarn.lock to validate-orchestrator path filters Ensure orchestrator validation runs when yarn.lock changes, since dependency updates can affect plugin compatibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: move install scripts to orchestrator repo Install scripts now live at game-ci/orchestrator where the CLI releases are published. Removed from unity-builder to avoid duplication. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Potential fix for code scanning alert no. 78: Workflow does not contain permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * refactor: rename enterprise services to plugin services The orchestrator is a plugin, not an enterprise feature. Renamed loadEnterpriseServices -> loadPluginServices and all related variables, types, log messages, and test descriptions to use "plugin" terminology. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): update workflow references from loadEnterpriseServices to loadPluginServices CI workflows still referenced the old function name after the rename. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: remove (Nightly) from integration tests workflow name Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: only suppress module-not-found errors in plugin loader Previously both loadOrchestrator() and loadPluginServices() caught all errors, masking real failures like syntax errors or missing transitive dependencies. Now only MODULE_NOT_FOUND / ERR_MODULE_NOT_FOUND errors are suppressed; all other exceptions are rethrown. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: add smoke test for orchestrator build wiring Verifies end-to-end that loadOrchestrator().run() is correctly wired to Orchestrator.run(), BuildParameters.create() produces valid config, and plugin services resolve to real implementations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: wire orchestrator integration tests into integrity check - Add workflow_call trigger to validate-orchestrator-integration.yml so other workflows can invoke the exhaustive test suite - Add orchestrator-integration job to integrity-check.yml that runs on pushes to main (skipped on PRs to avoid 1-2h CI time) - Daily cron + manual dispatch remain as fallback triggers Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ci): pin LocalStack to v3.8.1 for AWS SDK v3 compatibility localstack:latest (v4.14+) returns JSON responses for some S3 operations, but @aws-sdk/client-s3 v3.779+ uses AwsRestXmlProtocol which expects XML. This breaks all SharedWorkspaceLocking tests (locking, e2e caching, retaining). Pin to v3.8.1 (last v3 release) where the S3 provider returns proper XML responses. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * revert: restore localstack:latest now that SDK is pinned The S3 deserialization issue was caused by @aws-sdk/client-s3 v3.1005 (schema-based AwsRestXmlProtocol), not LocalStack's version. The SDK is now pinned to ~3.779.0 in the orchestrator repo, so localstack:latest works correctly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: reorder AWS integration tests to prevent workspace corruption Move mandatory tests (caching, locking-core, locking-get-locked) before continue-on-error e2e tests. The e2e tests can corrupt the workspace (delete package.json), which was causing subsequent mandatory tests to fail with "Couldn't find a package.json". Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: plugin lifecycle interface for orchestrator extraction Replace hardcoded orchestrator params with a lifecycle-based plugin interface. The orchestrator reads its own config from env vars — unity-builder just calls 6 hooks (initialize, canHandleBuild, handleBuild, beforeLocalBuild, afterLocalBuild, handlePostBuild). Removes ~2900 lines from unity-builder (93 BuildParameters fields, 346 Input getters, 70 action.yml inputs, 400 lines of service orchestration in index.ts). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: align CI workflow with actual loadOrchestratorPlugin export The validate-orchestrator workflows referenced loadOrchestrator and loadPluginServices which don't exist — the source exports loadOrchestratorPlugin. Updated all CI steps to use the correct function name and test the actual OrchestratorPlugin lifecycle interface. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: checkout matching orchestrator branch in CI validation The validate-orchestrator workflow was always checking out the main branch of game-ci/orchestrator. When both repos have changes on a feature branch (e.g. refactor/orchestrator-extraction), the CI needs to use the matching branch. Falls back to main if the branch doesn't exist in the orchestrator repo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * ci: add run-integration label to trigger full integration tests on PRs PRs labeled `run-integration` now run the full orchestrator integration suite (K8s, AWS, local-docker, rclone via LocalStack + k3d). Without the label, integration tests only run on push to main and the daily cron. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * ci: checkout matching orchestrator branch in integration tests Try the matching branch name (e.g. refactor/orchestrator-extraction) from game-ci/orchestrator first, falling back to main. This allows testing cross-repo changes before merging to orchestrator main. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * ci: switch from LocalStack to MiniStack for AWS mock services LocalStack community edition was discontinued (2026.03.0+) and now requires a paid license for ECS, CloudFormation, Kinesis, and other services used in integration tests. Switch to MiniStack (MIT, free, ministackorg/ministack) which provides all 40+ AWS services on the same port 4566 with backward-compatible health endpoints. ~10x smaller image, ~2s startup. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: add sync-secrets workflow for sibling repositories Manually-triggered workflow that copies secrets (Unity credentials, AWS/GCP tokens, Codecov) from unity-builder to orchestrator or cli repos. Supports dry-run mode. Folded from PR #825. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Potential fix for pull request finding 'CodeQL / Workflow does not contain permissions' Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * fix: add UNITY_LICENSE and NPM_TOKEN to sync-secrets, don't block on failures Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore: remove LOCALSTACK_AUTH_TOKEN from sync-secrets workflow MiniStack doesn't require an auth token. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>

Summary
Four new providers that delegate builds to external platforms, with comprehensive unit test coverage (#805).
Infrastructure Automation Providers
remote-powershellansibleCI Dispatch Providers
github-actionsgitlab-ciPattern
All four follow the same provider pattern:
New Inputs (15)
remotePowershellHost,remotePowershellCredential,remotePowershellTransportgithubActionsRepo,githubActionsWorkflow,githubActionsToken,githubActionsRefgitlabProjectId,gitlabTriggerToken,gitlabApiUrl,gitlabRefansibleInventory,ansiblePlaybook,ansibleExtraVars,ansibleVaultPasswordTest coverage
91 unit tests across 5 test files:
Related
Test plan
tsc --noEmit— no type errorsSummary by CodeRabbit
New Features
Tests
Chores
Tracking: