From a1157780ce7ddc93ebc7824215d2a667a7390f8e Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 23 May 2023 22:55:20 -0400 Subject: azure pipelines: fix branch patterns to support 1.x release branches I would like to use the same pattern rule as github actions uses: '[0-9]+.[0-9]+' But azure pipelines doesn't document what the syntax here is, and it scares me that perhaps the reason we didn't already do this is because it doesn't work at all. --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 33dad3f72..76440de7a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,7 +19,7 @@ trigger: include: - 'master' # Release branches - - '0.*' + - '1.*' paths: include: - 'mesonbuild' -- cgit v1.2.3