mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
18 lines
606 B
TypeScript
18 lines
606 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { AzurePipelinesTasksDatasource } from '../../datasource/azure-pipelines-tasks';
|
|
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const url = 'https://learn.microsoft.com/azure/devops/pipelines';
|
|
export const categories: Category[] = ['ci'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/).azuredevops/.+\\.ya?ml$', 'azure.*pipelines?.*\\.ya?ml$'],
|
|
enabled: false,
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
AzurePipelinesTasksDatasource.id,
|
|
GitTagsDatasource.id,
|
|
];
|