From f21b761572e2cb4b49683ccd088281857189c7a1 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Sun, 7 Feb 2021 22:12:54 +0100
Subject: [PATCH] chore: GlobalOnlyConfig

---
 lib/config/common.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/config/common.ts b/lib/config/common.ts
index f99830cfeb..814d13f187 100644
--- a/lib/config/common.ts
+++ b/lib/config/common.ts
@@ -65,7 +65,7 @@ export interface RenovateSharedConfig {
 
 // Config options used only within the global worker
 // The below should contain config options where stage=global
-export interface GlobalAdminConfig {
+export interface GlobalOnlyConfig {
   autodiscover?: boolean;
   autodiscoverFilter?: string;
   baseDir?: string;
@@ -190,7 +190,7 @@ export interface RenovateConfig
   fetchReleaseNotes?: boolean;
 }
 
-export interface GlobalConfig extends RenovateConfig, GlobalAdminConfig {}
+export interface GlobalConfig extends RenovateConfig, GlobalOnlyConfig {}
 
 export interface AssigneesAndReviewersConfig {
   assigneesFromCodeOwners?: boolean;
-- 
GitLab