0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 21:48:32 +00:00
renovatebot_renovate/lib/modules/manager/bitrise/index.ts
Risu 397ab49ef3
docs(managers): add missing url and displayName (#32621)
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
2024-12-01 08:47:27 +00:00

22 lines
629 B
TypeScript

import type { Category } from '../../../constants';
import { BitriseDatasource } from '../../datasource/bitrise';
import { GitTagsDatasource } from '../../datasource/git-tags';
import { extractPackageFile } from './extract';
export { extractPackageFile };
export const url = 'https://devcenter.bitrise.io';
export const categories: Category[] = ['ci'];
export const urls = [
'https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps.html',
];
export const defaultConfig = {
fileMatch: ['(^|/)bitrise\\.ya?ml$'],
};
export const supportedDatasources = [
BitriseDatasource.id,
GitTagsDatasource.id,
];