From bd505fb682ddead3c355caa86f78b4d7102e7d2c Mon Sep 17 00:00:00 2001 From: Barath Kumar Date: Mon, 11 Aug 2025 19:55:23 +0200 Subject: [PATCH] Add OCO_HOOK_AUTO_UNCOMMENT to environment configuration --- src/commands/config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/config.ts b/src/commands/config.ts index 8bf98c36..aafa670c 100644 --- a/src/commands/config.ts +++ b/src/commands/config.ts @@ -954,7 +954,8 @@ const getEnvConfig = (envPath: string) => { OCO_TEST_MOCK_TYPE: process.env.OCO_TEST_MOCK_TYPE, OCO_OMIT_SCOPE: parseConfigVarValue(process.env.OCO_OMIT_SCOPE), - OCO_GITPUSH: parseConfigVarValue(process.env.OCO_GITPUSH) // todo: deprecate + OCO_GITPUSH: parseConfigVarValue(process.env.OCO_GITPUSH), // todo: deprecate + OCO_HOOK_AUTO_UNCOMMENT: parseConfigVarValue(process.env.OCO_HOOK_AUTO_UNCOMMENT) }; };