From fadf1f28a1fdf9f2acf826c7bf30700d146b4717 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Wed, 13 Sep 2023 07:36:00 +0200
Subject: [PATCH] fix: add custom hostTypes to platforms

---
 lib/constants/platforms.ts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/constants/platforms.ts b/lib/constants/platforms.ts
index a3784e481d..c43a9ca9fc 100644
--- a/lib/constants/platforms.ts
+++ b/lib/constants/platforms.ts
@@ -13,6 +13,7 @@ export const GITEA_API_USING_HOST_TYPES = [
   'gitea-changelog',
   'gitea-releases',
   'gitea-tags',
+  'custom',
 ];
 
 export const GITHUB_API_USING_HOST_TYPES = [
@@ -24,6 +25,7 @@ export const GITHUB_API_USING_HOST_TYPES = [
   'hermit',
   'github-changelog',
   'conan',
+  'custom',
 ];
 
 export const GITLAB_API_USING_HOST_TYPES = [
@@ -33,10 +35,12 @@ 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