From d5a2c4db58efa0315f3a2bc43744fe9a65d1392a Mon Sep 17 00:00:00 2001 From: Patrick Pircher Date: Thu, 23 Jan 2025 16:23:11 +0100 Subject: [PATCH] add to options --- src/configuration.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/configuration.ts b/src/configuration.ts index 5e242e7..77dd724 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -81,7 +81,7 @@ export function fromPath(rootPath: string, options: ConfigLoaderOptions = {}): C } // Step 2: fill partial config with defaults - let { repo, nextVersion, labels, cacheDir, ignoreCommitters, wildcardLabel } = config; + let { repo, nextVersion, labels, cacheDir, ignoreCommitters, wildcardLabel, github } = config; const packages = getPackages(rootPath); @@ -139,6 +139,7 @@ export function fromPath(rootPath: string, options: ConfigLoaderOptions = {}): C cacheDir, wildcardLabel, packages, + github }; }