From 17cf8b6a597d96017fe51bf0312cf51caf6f78b5 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Fri, 12 Apr 2024 14:21:56 +0200 Subject: [PATCH] fix(hostRules): drop custom from platform hostTypes (#28371) --- lib/constants/platforms.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/constants/platforms.ts b/lib/constants/platforms.ts index d1ee815631..65d5c60a7e 100644 --- a/lib/constants/platforms.ts +++ b/lib/constants/platforms.ts @@ -14,7 +14,6 @@ export const GITEA_API_USING_HOST_TYPES = [ 'gitea-changelog', 'gitea-releases', 'gitea-tags', - 'custom', ]; export const GITHUB_API_USING_HOST_TYPES = [ @@ -26,7 +25,6 @@ export const GITHUB_API_USING_HOST_TYPES = [ 'hermit', 'github-changelog', 'conan', - 'custom', ]; export const GITLAB_API_USING_HOST_TYPES = [ @@ -36,12 +34,10 @@ export const GITLAB_API_USING_HOST_TYPES = [ 'gitlab-packages', 'gitlab-changelog', 'pypi', - 'custom', ]; export const BITBUCKET_API_USING_HOST_TYPES = [ 'bitbucket', 'bitbucket-changelog', 'bitbucket-tags', - 'custom', ]; -- GitLab