mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
b2422d86fd
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>
47 lines
770 B
TypeScript
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',
|
|
];
|