mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 23:51:55 +00:00

Co-authored-by: Sebastian Poxhofer <secustor@users.noreply.github.com> 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>
21 lines
641 B
TypeScript
21 lines
641 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 = {
|
|
managerFilePatterns: ['/(^|/)bitrise\\.ya?ml$/'],
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
BitriseDatasource.id,
|
|
GitTagsDatasource.id,
|
|
];
|