mirror of https://github.com/renovatebot/renovate
14 lines
387 B
TypeScript
14 lines
387 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GitlabTagsDatasource } from '../../datasource/gitlab-tags';
|
|
import { extractPackageFile } from './extract';
|
|
|
|
export { extractPackageFile };
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['\\.gitlab-ci\\.ya?ml$'],
|
|
};
|
|
|
|
export const categories: Category[] = ['ci'];
|
|
|
|
export const supportedDatasources = [GitlabTagsDatasource.id];
|