From cfc377fd9b145f440fe1d25a1922c627f3c5fbd0 Mon Sep 17 00:00:00 2001 From: Lex Christopherson Date: Tue, 24 Mar 2026 07:43:17 -0600 Subject: [PATCH] fix(gsd): use correct notify severity type ("warning" not "warn") Co-Authored-By: Claude Opus 4.6 (1M context) --- src/resources/extensions/gsd/auto/phases.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/extensions/gsd/auto/phases.ts b/src/resources/extensions/gsd/auto/phases.ts index 7eae0af5b..18c3cdea2 100644 --- a/src/resources/extensions/gsd/auto/phases.ts +++ b/src/resources/extensions/gsd/auto/phases.ts @@ -834,7 +834,7 @@ export async function runUnitPhase( // Log a warning but allow execution to proceed. The .git check above is sufficient // to ensure we're in a valid working directory. debugLog("runUnitPhase", { phase: "worktree-health-warn-greenfield", basePath: s.basePath, hasProjectFile, hasSrcDir }); - ctx.ui.notify(`Warning: ${s.basePath} has no recognized project files — proceeding as greenfield project`, "warn"); + ctx.ui.notify(`Warning: ${s.basePath} has no recognized project files — proceeding as greenfield project`, "warning"); } }