From 076fc9adbf8ccc497c498aff441ea5b1961d7ee8 Mon Sep 17 00:00:00 2001 From: Markus Schulte <mail@schulte-development.de> Date: Tue, 8 Oct 2024 10:18:37 +0200 Subject: [PATCH] feat(manager/azure-pipelines): Include `.azuredevops` folder paths (#31735) Co-authored-by: Rhys Arkins <rhys@arkins.net> --- lib/modules/manager/azure-pipelines/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/manager/azure-pipelines/index.ts b/lib/modules/manager/azure-pipelines/index.ts index 6dffe661f2..b589f3c51e 100644 --- a/lib/modules/manager/azure-pipelines/index.ts +++ b/lib/modules/manager/azure-pipelines/index.ts @@ -4,7 +4,7 @@ import { GitTagsDatasource } from '../../datasource/git-tags'; export { extractPackageFile } from './extract'; export const defaultConfig = { - fileMatch: ['azure.*pipelines?.*\\.ya?ml$'], + fileMatch: ['(^|/).azuredevops/.+\\.ya?ml$', 'azure.*pipelines?.*\\.ya?ml$'], enabled: false, }; -- GitLab