renovate/lib/constants/platforms.ts
Markus Schulz b2422d86fd
feat: Support for Platform "Gerrit" (#18961)
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2023-12-29 17:55:25 +00:00

47 lines
770 B
TypeScript

export type PlatformId =
| 'azure'
| 'codecommit'
| 'bitbucket'
| 'bitbucket-server'
| 'gerrit'
| 'gitea'
| 'github'
| 'gitlab'
| 'local';
export const GITEA_API_USING_HOST_TYPES = [
'gitea',
'gitea-changelog',
'gitea-releases',
'gitea-tags',
'custom',
];
export const GITHUB_API_USING_HOST_TYPES = [
'github',
'github-releases',
'github-release-attachments',
'github-tags',
'pod',
'hermit',
'github-changelog',
'conan',
'custom',
];
export const GITLAB_API_USING_HOST_TYPES = [
'gitlab',
'gitlab-releases',
'gitlab-tags',
'gitlab-packages',
'gitlab-changelog',
'pypi',
'custom',
];
export const BITBUCKET_API_USING_HOST_TYPES = [
'bitbucket',
'bitbucket-changelog',
'bitbucket-tags',
'custom',
];