From 5ba9d1d4dc1189695b00396f559f126e0f1d98b1 Mon Sep 17 00:00:00 2001 From: Konrad Jamrozik Date: Mon, 13 Feb 2023 13:44:52 -0800 Subject: [PATCH] Enable the new, regex-based, wildcard-supporting CODEOWNERS matcher (#5088) --- tools/code-owners-parser/CodeOwnersParser/CodeownersFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/code-owners-parser/CodeOwnersParser/CodeownersFile.cs b/tools/code-owners-parser/CodeOwnersParser/CodeownersFile.cs index 8b7cbf7d436..3d13f2431ef 100644 --- a/tools/code-owners-parser/CodeOwnersParser/CodeownersFile.cs +++ b/tools/code-owners-parser/CodeOwnersParser/CodeownersFile.cs @@ -8,7 +8,7 @@ namespace Azure.Sdk.Tools.CodeOwnersParser { public static class CodeownersFile { - private const bool UseRegexMatcherDefault = false; + private const bool UseRegexMatcherDefault = true; public static List GetCodeownersEntriesFromFileOrUrl( string codeownersFilePathOrUrl)