diff --git a/lib/config/global.ts b/lib/config/global.ts
index ea336e2578104f24a2966168a2426738301bd9f8..db0b80366beab1c61a146be876fb0db1acceda55 100644
--- a/lib/config/global.ts
+++ b/lib/config/global.ts
@@ -23,6 +23,8 @@ export class GlobalConfig {
     'privateKey',
     'privateKeyOld',
     'gitTimeout',
+    'platform',
+    'endpoint',
   ];
 
   private static config: RepoGlobalConfig = {};
diff --git a/lib/config/presets/index.spec.ts b/lib/config/presets/index.spec.ts
index c692bffdc94a3cccb38c3e4446e8fd22a7437caf..d6a562dbfe7d32e8216e6685c4061b34d102b556 100644
--- a/lib/config/presets/index.spec.ts
+++ b/lib/config/presets/index.spec.ts
@@ -287,7 +287,6 @@ describe('config/presets/index', () => {
 
       expect(res.labels).toEqual(['self-hosted resolved']);
       expect(local.getPreset.mock.calls).toHaveLength(1);
-      expect(local.getPreset.mock.calls[0][0].baseConfig).toBeDefined();
       expect(res).toMatchSnapshot();
     });
 
@@ -308,26 +307,6 @@ describe('config/presets/index', () => {
         endpoint: 'https://dummy.example.com/api/v4',
         labels: ['self-hosted resolved'],
       });
-      expect(local.getPreset.mock.calls).toMatchObject([
-        [
-          {
-            baseConfig: {
-              platform: 'gitlab',
-              endpoint: 'https://dummy.example.com/api/v4',
-              extends: ['local>username/preset-repo'],
-            },
-          },
-        ],
-        [
-          {
-            baseConfig: {
-              platform: 'gitlab',
-              endpoint: 'https://dummy.example.com/api/v4',
-              extends: ['local>username/preset-repo'],
-            },
-          },
-        ],
-      ]);
     });
   });
 
diff --git a/lib/config/presets/index.ts b/lib/config/presets/index.ts
index 04deef121484d52eb4f3365f3257f55a6d2680c3..506c7f042c2dfb4f8637f0d3f9541ca124b16dd7 100644
--- a/lib/config/presets/index.ts
+++ b/lib/config/presets/index.ts
@@ -222,7 +222,6 @@ export async function getPreset(
     repo,
     presetPath,
     presetName,
-    baseConfig,
     tag,
   });
   if (!presetConfig) {
diff --git a/lib/config/presets/local/index.spec.ts b/lib/config/presets/local/index.spec.ts
index 44aec13e4409ed5da7ed9b1c5a552033b592e855..17c4c6499f988087864ff17cedc76d9105c39b68 100644
--- a/lib/config/presets/local/index.spec.ts
+++ b/lib/config/presets/local/index.spec.ts
@@ -1,4 +1,5 @@
 import { mocked } from '../../../../test/util';
+import { GlobalConfig } from '../../global';
 import * as _azure from '../azure';
 import * as _bitbucket from '../bitbucket';
 import * as _bitbucketServer from '../bitbucket-server';
@@ -34,62 +35,66 @@ describe('config/presets/local/index', () => {
   });
 
   describe('getPreset()', () => {
+    beforeEach(() => {
+      GlobalConfig.reset();
+    });
+
     it('throws for unsupported platform', async () => {
+      GlobalConfig.set({
+        platform: 'unsupported-platform',
+      });
       await expect(async () => {
         await local.getPreset({
           repo: 'some/repo',
           presetName: 'default',
-          baseConfig: {
-            platform: 'unsupported-platform',
-          },
         });
       }).rejects.toThrow();
     });
 
     it('throws for missing platform', async () => {
+      GlobalConfig.set({
+        platform: undefined,
+      });
       await expect(async () => {
         await local.getPreset({
           repo: 'some/repo',
           presetName: 'default',
-          baseConfig: {
-            platform: undefined,
-          },
         });
       }).rejects.toThrow();
     });
 
     it('forwards to azure', async () => {
+      GlobalConfig.set({
+        platform: 'azure',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
-        baseConfig: {
-          platform: 'azure',
-        },
       });
       expect(azure.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to bitbucket', async () => {
+      GlobalConfig.set({
+        platform: 'bitbucket',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
-        baseConfig: {
-          platform: 'bitbucket',
-        },
       });
       expect(bitbucket.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to custom bitbucket-server', async () => {
+      GlobalConfig.set({
+        platform: 'bitbucket-server',
+        endpoint: 'https://git.example.com',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
-        baseConfig: {
-          platform: 'bitbucket-server',
-          endpoint: 'https://git.example.com',
-        },
       });
       expect(
         bitbucketServer.getPresetFromEndpoint.mock.calls
@@ -98,126 +103,124 @@ describe('config/presets/local/index', () => {
     });
 
     it('forwards to gitea', async () => {
+      GlobalConfig.set({
+        platform: 'gitea',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
-        baseConfig: {
-          platform: 'gitea',
-        },
       });
       expect(gitea.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to custom gitea', async () => {
+      GlobalConfig.set({
+        platform: 'gitea',
+        endpoint: 'https://api.gitea.example.com',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
-        baseConfig: {
-          platform: 'gitea',
-          endpoint: 'https://api.gitea.example.com',
-        },
       });
       expect(gitea.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to github', async () => {
+      GlobalConfig.set({
+        platform: 'github',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
-        baseConfig: {
-          platform: 'github',
-        },
       });
       expect(github.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to custom github', async () => {
+      GlobalConfig.set({
+        platform: 'github',
+        endpoint: 'https://api.github.example.com',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
-        baseConfig: {
-          platform: 'github',
-          endpoint: 'https://api.github.example.com',
-        },
       });
       expect(github.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to github with a tag', async () => {
+      GlobalConfig.set({
+        platform: 'github',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         tag: 'someTag',
-        baseConfig: {
-          platform: 'github',
-        },
       });
       expect(github.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to custom github with a tag', async () => {
+      GlobalConfig.set({
+        platform: 'github',
+        endpoint: 'https://api.github.example.com',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
         tag: 'someTag',
-        baseConfig: {
-          platform: 'github',
-          endpoint: 'https://api.github.example.com',
-        },
       });
       expect(github.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to gitlab', async () => {
+      GlobalConfig.set({
+        platform: 'GitLab',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
-        baseConfig: {
-          platform: 'GitLab',
-        },
       });
       expect(gitlab.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to custom gitlab', async () => {
+      GlobalConfig.set({
+        platform: 'gitlab',
+        endpoint: 'https://gitlab.example.com/api/v4',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
-        baseConfig: {
-          platform: 'gitlab',
-          endpoint: 'https://gitlab.example.com/api/v4',
-        },
       });
       expect(gitlab.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to gitlab with a tag', async () => {
+      GlobalConfig.set({ platform: 'GitLab' });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
         tag: 'someTag',
-        baseConfig: {
-          platform: 'GitLab',
-        },
       });
       expect(gitlab.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
     });
 
     it('forwards to custom gitlab with a tag', async () => {
+      GlobalConfig.set({
+        platform: 'gitlab',
+        endpoint: 'https://gitlab.example.com/api/v4',
+      });
       const content = await local.getPreset({
         repo: 'some/repo',
         presetName: 'default',
         tag: 'someTag',
-        baseConfig: {
-          platform: 'gitlab',
-          endpoint: 'https://gitlab.example.com/api/v4',
-        },
       });
       expect(gitlab.getPresetFromEndpoint.mock.calls).toMatchSnapshot();
       expect(content).toEqual({ resolved: 'preset' });
diff --git a/lib/config/presets/local/index.ts b/lib/config/presets/local/index.ts
index 57aff34349d9bdc47c280b10191d4325168d527f..6b951eeea3e5fd4ed8b93874fd9d9ff1dfd90325 100644
--- a/lib/config/presets/local/index.ts
+++ b/lib/config/presets/local/index.ts
@@ -1,4 +1,5 @@
 import { PlatformId } from '../../../constants';
+import { GlobalConfig } from '../../global';
 import * as azure from '../azure';
 import * as bitbucket from '../bitbucket';
 import * as bitbucketServer from '../bitbucket-server';
@@ -21,9 +22,8 @@ export function getPreset({
   presetName = 'default',
   presetPath,
   tag,
-  baseConfig,
 }: PresetConfig): Promise<Preset | undefined> {
-  const { platform, endpoint } = baseConfig ?? {};
+  const { platform, endpoint } = GlobalConfig.get();
   if (!platform) {
     throw new Error(`Missing platform config for local preset.`);
   }
@@ -31,8 +31,7 @@ export function getPreset({
   if (!resolver) {
     throw new Error(
       // TODO: can be undefined? #7154
-      // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
-      `Unsupported platform '${baseConfig!.platform}' for local preset.`
+      `Unsupported platform '${platform}' for local preset.`
     );
   }
   return resolver.getPresetFromEndpoint(
diff --git a/lib/config/presets/types.ts b/lib/config/presets/types.ts
index ce920d8f9a10215d286f7ae7b049b3eb86d78695..cc31c2e27ab4a97ae56f01349b628d2d58d60f68 100644
--- a/lib/config/presets/types.ts
+++ b/lib/config/presets/types.ts
@@ -7,7 +7,6 @@ export type PresetConfig = {
   repo: string;
   presetPath?: string;
   presetName?: string;
-  baseConfig?: RenovateConfig;
   tag?: string;
 };
 
diff --git a/lib/config/types.ts b/lib/config/types.ts
index 739c606e32a55585bf64d589bfcff9e3c7615e3e..e49d86f2d5be6523b96c009dc12ea02b97dd2765 100644
--- a/lib/config/types.ts
+++ b/lib/config/types.ts
@@ -51,7 +51,6 @@ export interface RenovateSharedConfig {
   hashedBranchLength?: number;
   npmrc?: string;
   npmrcMerge?: boolean;
-  platform?: string;
   postUpgradeTasks?: PostUpgradeTasks;
   prBodyColumns?: string[];
   prBodyDefinitions?: Record<string, string>;
@@ -95,6 +94,8 @@ export interface GlobalOnlyConfig {
   privateKeyPathOld?: string;
   redisUrl?: string;
   repositories?: RenovateRepository[];
+  platform?: string;
+  endpoint?: string;
 }
 
 // Config options used within the repository worker, but not user configurable
@@ -120,11 +121,11 @@ export interface RepoGlobalConfig {
   privateKeyOld?: string;
   localDir?: string;
   cacheDir?: string;
+  platform?: string;
+  endpoint?: string;
 }
 
 export interface LegacyAdminConfig {
-  endpoint?: string;
-
   localDir?: string;
 
   logContext?: string;
@@ -137,7 +138,6 @@ export interface LegacyAdminConfig {
   onboardingConfig?: RenovateSharedConfig;
   onboardingConfigFileName?: string;
 
-  platform?: string;
   requireConfig?: RequiredConfig;
 }
 export type ExecutionMode = 'branch' | 'update';
diff --git a/lib/modules/manager/gitlabci-include/extract.spec.ts b/lib/modules/manager/gitlabci-include/extract.spec.ts
index 201ff682a617d903757e76d94388d26f28f41bcb..1a384e662a359a9453f818b77fa03e444d8358ea 100644
--- a/lib/modules/manager/gitlabci-include/extract.spec.ts
+++ b/lib/modules/manager/gitlabci-include/extract.spec.ts
@@ -1,4 +1,5 @@
 import { loadFixture } from '../../../../test/util';
+import { GlobalConfig } from '../../../config/global';
 import { extractPackageFile } from './extract';
 
 const yamlFileMultiConfig = loadFixture('gitlab-ci.1.yaml');
@@ -8,32 +9,22 @@ const yamlWithEmptyIncludeConfig = loadFixture('gitlab-ci.3.yaml');
 describe('modules/manager/gitlabci-include/extract', () => {
   describe('extractPackageFile()', () => {
     it('returns null for empty', () => {
-      expect(
-        extractPackageFile('nothing here', '.gitlab-ci.yml', {})
-      ).toBeNull();
+      expect(extractPackageFile('nothing here')).toBeNull();
     });
 
     it('returns null for include block without any actual includes', () => {
-      const res = extractPackageFile(
-        yamlWithEmptyIncludeConfig,
-        '.gitlab-ci.yml',
-        {}
-      );
+      const res = extractPackageFile(yamlWithEmptyIncludeConfig);
       expect(res).toBeNull();
     });
 
     it('extracts single include block', () => {
-      const res = extractPackageFile(
-        yamlFileSingleConfig,
-        '.gitlab-ci.yml',
-        {}
-      );
+      const res = extractPackageFile(yamlFileSingleConfig);
       expect(res.deps).toMatchSnapshot();
       expect(res.deps).toHaveLength(1);
     });
 
     it('extracts multiple include blocks', () => {
-      const res = extractPackageFile(yamlFileMultiConfig, '.gitlab-ci.yml', {});
+      const res = extractPackageFile(yamlFileMultiConfig);
       expect(res.deps).toMatchSnapshot();
       expect(res.deps).toHaveLength(3);
     });
@@ -45,9 +36,8 @@ describe('modules/manager/gitlabci-include/extract', () => {
       ];
 
       for (const endpoint of endpoints) {
-        const res = extractPackageFile(yamlFileMultiConfig, '.gitlab-ci.yml', {
-          endpoint,
-        });
+        GlobalConfig.set({ platform: 'gitlab', endpoint });
+        const res = extractPackageFile(yamlFileMultiConfig);
         expect(res.deps[0].registryUrls[0]).toBe('http://gitlab.test');
       }
     });
diff --git a/lib/modules/manager/gitlabci-include/extract.ts b/lib/modules/manager/gitlabci-include/extract.ts
index cfb52a5f40d012d8d14a6b2cc52acc6c110ecece..ea6be88efc4241846950f8e2b2854e1c7e9d5269 100644
--- a/lib/modules/manager/gitlabci-include/extract.ts
+++ b/lib/modules/manager/gitlabci-include/extract.ts
@@ -1,10 +1,11 @@
 import is from '@sindresorhus/is';
 import { load } from 'js-yaml';
+import { GlobalConfig } from '../../../config/global';
 import { logger } from '../../../logger';
 import { regEx } from '../../../util/regex';
 import { GitlabTagsDatasource } from '../../datasource/gitlab-tags';
 import { replaceReferenceTags } from '../gitlabci/utils';
-import type { ExtractConfig, PackageDependency, PackageFile } from '../types';
+import type { PackageDependency, PackageFile } from '../types';
 
 function extractDepFromIncludeFile(includeObj: {
   file: any;
@@ -24,12 +25,9 @@ function extractDepFromIncludeFile(includeObj: {
   return dep;
 }
 
-export function extractPackageFile(
-  content: string,
-  _packageFile: string,
-  config: ExtractConfig
-): PackageFile | null {
+export function extractPackageFile(content: string): PackageFile | null {
   const deps: PackageDependency[] = [];
+  const { platform, endpoint } = GlobalConfig.get();
   try {
     // TODO: fix me (#9610)
     const doc: any = load(replaceReferenceTags(content), {
@@ -44,10 +42,8 @@ export function extractPackageFile(
     for (const includeObj of includes) {
       if (includeObj?.file && includeObj.project) {
         const dep = extractDepFromIncludeFile(includeObj);
-        if (config.endpoint) {
-          dep.registryUrls = [
-            config.endpoint.replace(regEx(/\/api\/v4\/?/), ''),
-          ];
+        if (platform === 'gitlab' && endpoint) {
+          dep.registryUrls = [endpoint.replace(regEx(/\/api\/v4\/?/), '')];
         }
         deps.push(dep);
       }
diff --git a/lib/modules/manager/npm/post-update/index.ts b/lib/modules/manager/npm/post-update/index.ts
index cfbc499038700d8f80d7207f75377cc6082294b1..41181e50a473a7c6f979016b26c9909b4726d816 100644
--- a/lib/modules/manager/npm/post-update/index.ts
+++ b/lib/modules/manager/npm/post-update/index.ts
@@ -269,7 +269,7 @@ export async function writeUpdatedPackageFiles(
     const massagedFile = JSON.parse(packageFile.contents.toString());
     try {
       const { token } = hostRules.find({
-        hostType: config.platform,
+        hostType: 'github',
         url: 'https://api.github.com/',
       });
       for (const upgrade of config.upgrades) {
@@ -507,7 +507,7 @@ export async function getAdditionalFiles(
   let token: string | undefined;
   try {
     ({ token } = hostRules.find({
-      hostType: config.platform,
+      hostType: 'github',
       url: 'https://api.github.com/',
     }));
     token = token ? /* istanbul ignore next */ `${token}@` : token;
diff --git a/lib/modules/manager/types.ts b/lib/modules/manager/types.ts
index 1f1f542c39fcaefa7f7351a0bc9a9662f304a239..8ca2a35518cc0bc58bc4b528f1000398285f8cb5 100644
--- a/lib/modules/manager/types.ts
+++ b/lib/modules/manager/types.ts
@@ -16,7 +16,6 @@ export interface ManagerData<T> {
 
 export interface ExtractConfig {
   registryUrls?: string[];
-  endpoint?: string;
   aliases?: Record<string, string>;
   npmrc?: string;
   npmrcMerge?: boolean;
@@ -297,7 +296,6 @@ export interface PostUpdateConfig<T = Record<string, any>>
   skipInstalls?: boolean;
   ignoreScripts?: boolean;
 
-  platform?: string;
   upgrades: Upgrade[];
   npmLock?: string;
   yarnLock?: string;
diff --git a/lib/util/cache/repository/index.spec.ts b/lib/util/cache/repository/index.spec.ts
index b7b996436bbc15b27257d6bcba4375026cac71d7..8a2aeb0add410a2c2cb83dda1e45cdf965b493a7 100644
--- a/lib/util/cache/repository/index.spec.ts
+++ b/lib/util/cache/repository/index.spec.ts
@@ -13,7 +13,7 @@ describe('util/cache/repository/index', () => {
   beforeEach(() => {
     resetCache();
     jest.resetAllMocks();
-    GlobalConfig.set({ cacheDir: '/tmp/cache' });
+    GlobalConfig.set({ cacheDir: '/tmp/cache', platform: 'github' });
   });
 
   const config: RenovateConfig = {
diff --git a/lib/util/cache/repository/init.ts b/lib/util/cache/repository/init.ts
index bcde9c206942c93335c7c2ccea565a913815ea9d..77b20ab2c99ae61d79f6049c26fc87083247307a 100644
--- a/lib/util/cache/repository/init.ts
+++ b/lib/util/cache/repository/init.ts
@@ -1,3 +1,4 @@
+import { GlobalConfig } from '../../../config/global';
 import type { RenovateConfig } from '../../../config/types';
 import { LocalRepoCache } from './impl/local';
 import { resetCache, setCache } from '.';
@@ -7,12 +8,9 @@ import { resetCache, setCache } from '.';
  */
 export async function initRepoCache(config: RenovateConfig): Promise<void> {
   resetCache();
-  if (
-    config.platform &&
-    config.repository &&
-    config.repositoryCache === 'enabled'
-  ) {
-    const localCache = new LocalRepoCache(config.platform, config.repository);
+  const { platform } = GlobalConfig.get();
+  if (platform && config.repository && config.repositoryCache === 'enabled') {
+    const localCache = new LocalRepoCache(platform, config.repository);
     await localCache.load();
     setCache(localCache);
   }
diff --git a/lib/workers/global/index.ts b/lib/workers/global/index.ts
index b108aee4ce6c6ed1570bcd3446aa20c7c89f3d6b..9354be86d85fe17fc708e77fec2c260a31d52046 100644
--- a/lib/workers/global/index.ts
+++ b/lib/workers/global/index.ts
@@ -5,6 +5,7 @@ import semver from 'semver';
 import upath from 'upath';
 import * as configParser from '../../config';
 import { mergeChildConfig } from '../../config';
+import { GlobalConfig } from '../../config/global';
 import { resolveConfigPresets } from '../../config/presets';
 import { validateConfigSecrets } from '../../config/secrets';
 import type {
@@ -31,9 +32,10 @@ export async function getRepositoryConfig(
     globalConfig,
     is.string(repository) ? { repository } : repository
   );
+  const platform = GlobalConfig.get('platform');
   repoConfig.localDir = upath.join(
     repoConfig.baseDir,
-    `./repos/${repoConfig.platform}/${repoConfig.repository}`
+    `./repos/${platform}/${repoConfig.repository}`
   );
   await fs.ensureDir(repoConfig.localDir);
   delete repoConfig.baseDir;
diff --git a/lib/workers/repository/init/index.ts b/lib/workers/repository/init/index.ts
index 788eab615b6fcbb707972889c7b23d1d02439ec7..ce75de4b3f1cf6972646a00a7edc7282aa9d3885 100644
--- a/lib/workers/repository/init/index.ts
+++ b/lib/workers/repository/init/index.ts
@@ -1,3 +1,4 @@
+import { GlobalConfig } from '../../../config/global';
 import { applySecretsToConfig } from '../../../config/secrets';
 import type { RenovateConfig } from '../../../config/types';
 import { logger } from '../../../logger';
@@ -17,8 +18,9 @@ function initializeConfig(config: RenovateConfig): RenovateConfig {
 
 function warnOnUnsupportedOptions(config: RenovateConfig): void {
   if (config.filterUnavailableUsers && !platform.filterUnavailableUsers) {
+    const platform = GlobalConfig.get('platform');
     logger.warn(
-      `Configuration option 'filterUnavailableUsers' is not supported on the current platform '${config.platform}'.`
+      `Configuration option 'filterUnavailableUsers' is not supported on the current platform '${platform}'.`
     );
   }
 }
diff --git a/lib/workers/repository/onboarding/branch/config.spec.ts b/lib/workers/repository/onboarding/branch/config.spec.ts
index 8ce9e6a8bc196ac0f5ea8eaddc35a7904a327474..613e50bc5cbb2a5c681949a1168938d96df32c58 100644
--- a/lib/workers/repository/onboarding/branch/config.spec.ts
+++ b/lib/workers/repository/onboarding/branch/config.spec.ts
@@ -14,6 +14,7 @@ describe('workers/repository/onboarding/branch/config', () => {
   beforeAll(() => {
     GlobalConfig.set({
       localDir: '',
+      platform: 'github',
     });
   });
 
diff --git a/lib/workers/repository/onboarding/branch/config.ts b/lib/workers/repository/onboarding/branch/config.ts
index 57d4ff32877e3b5f203115afdbab3f70f98fe9ad..bdce49e22b5588841692a609b54816874d45f1de 100644
--- a/lib/workers/repository/onboarding/branch/config.ts
+++ b/lib/workers/repository/onboarding/branch/config.ts
@@ -1,3 +1,4 @@
+import { GlobalConfig } from '../../../../config/global';
 import { getPreset } from '../../../../config/presets/local';
 import { PRESET_DEP_NOT_FOUND } from '../../../../config/presets/util';
 import type {
@@ -24,7 +25,7 @@ async function getOnboardingConfig(
   // Check for org/renovate-config
   try {
     const repo = `${orgName}/renovate-config`;
-    await getPreset({ repo, baseConfig: config });
+    await getPreset({ repo });
     orgPreset = `local>${repo}`;
   } catch (err) {
     if (
@@ -37,13 +38,13 @@ async function getOnboardingConfig(
 
   if (!orgPreset) {
     // Check for org/.{{platform}}
+    const platform = GlobalConfig.get('platform');
     try {
-      const repo = `${orgName}/.${config.platform}`;
+      const repo = `${orgName}/.${platform}`;
       const presetName = 'renovate-config';
       await getPreset({
         repo,
         presetName,
-        baseConfig: config,
       });
       orgPreset = `local>${repo}:${presetName}`;
     } catch (err) {
diff --git a/lib/workers/types.ts b/lib/workers/types.ts
index f7df16edb0dace43d607dc8fc0c9d58672c3487d..8b1f69c89036c82177a040018cdc52659bd3c647 100644
--- a/lib/workers/types.ts
+++ b/lib/workers/types.ts
@@ -37,7 +37,6 @@ export interface BranchUpgradeConfig
   currentDigest?: string;
   currentDigestShort?: string;
   currentValue?: string;
-  endpoint?: string;
   excludeCommitPaths?: string[];
   githubName?: string;
   group?: GroupConfig;