From 8937ab42b8bbe79c27649f61124cef053df2b171 Mon Sep 17 00:00:00 2001 From: Test User Date: Tue, 21 Apr 2026 15:40:25 +0000 Subject: [PATCH] chore: nudge job-builder for fresh CI build Co-Authored-By: Claude Opus 4.6 --- apps/api/src/services/job-builder.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/api/src/services/job-builder.ts b/apps/api/src/services/job-builder.ts index ff641b4..22c4591 100644 --- a/apps/api/src/services/job-builder.ts +++ b/apps/api/src/services/job-builder.ts @@ -3,6 +3,9 @@ * Constructs a Job that runs the Shannon worker image with the correct * volumes, env, and security context. Optionally includes a git clone init container. */ + * Constructs a Job that runs the Shannon worker image with the correct + * volumes, env, and security context. Optionally includes a git clone init container. + */ import type * as k8s from '@kubernetes/client-node'; @@ -21,7 +24,7 @@ export interface JobParams { readonly pipelineTesting?: boolean; } -const WORKER_LABEL = 'hightower-worker'; +const WORKER_LABEL = 'hightower-worker'; // const REPO_MOUNT_PATH = '/repo'; export function buildJobSpec(params: JobParams): k8s.V1Job {