From 8be1f04198f1afbef5b96e25a86e90af332b48d4 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Fri, 5 Feb 2021 17:37:31 +0100 Subject: [PATCH] chore: move privateKeyPath to global config --- lib/config/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/common.ts b/lib/config/common.ts index d55ca2506d..0de0c43d63 100644 --- a/lib/config/common.ts +++ b/lib/config/common.ts @@ -74,6 +74,7 @@ export interface GlobalAdminConfig { logFileLevel?: LogLevel; logLevel?: LogLevel; prCommitsPerRunLimit?: number; + privateKeyPath?: string; redisUrl?: string; repositories?: RenovateRepository[]; } @@ -113,7 +114,6 @@ export interface RenovateAdminConfig { platform?: string; postUpdateOptions?: string[]; privateKey?: string | Buffer; - privateKeyPath?: string; requireConfig?: boolean; } -- GitLab