mirror of https://github.com/renovatebot/renovate
19 lines
601 B
TypeScript
19 lines
601 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GalaxyCollectionDatasource } from '../../datasource/galaxy-collection';
|
|
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const categories: Category[] = ['ansible', 'iac'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)(galaxy|requirements)(\\.ansible)?\\.ya?ml$'],
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
GalaxyCollectionDatasource.id,
|
|
GitTagsDatasource.id,
|
|
GithubTagsDatasource.id,
|
|
];
|