mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
22 lines
629 B
TypeScript
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,
|
|
];
|