mirror of https://github.com/renovatebot/renovate
18 lines
517 B
TypeScript
18 lines
517 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
import { extractPackageFile } from './extract';
|
|
|
|
export { extractPackageFile };
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)\\.?bitbucket-pipelines\\.ya?ml$'],
|
|
};
|
|
|
|
export const categories: Category[] = ['ci'];
|
|
|
|
export const supportedDatasources = [DockerDatasource.id];
|
|
|
|
export const urls = [
|
|
'https://support.atlassian.com/bitbucket-cloud/docs/bitbucket-pipelines-configuration-reference/',
|
|
];
|