aboutsummaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-05-23 22:55:20 -0400
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2023-05-24 12:29:46 +0530
commita1157780ce7ddc93ebc7824215d2a667a7390f8e (patch)
treea8e2f71ffbd1be1127691eacfdcd50bf59c932b4 /azure-pipelines.yml
parente65f741e7994bdf7e3a48d22334825b638e70e38 (diff)
downloadmeson-a1157780ce7ddc93ebc7824215d2a667a7390f8e.zip
meson-a1157780ce7ddc93ebc7824215d2a667a7390f8e.tar.gz
meson-a1157780ce7ddc93ebc7824215d2a667a7390f8e.tar.bz2
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.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 33dad3f..76440de 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -19,7 +19,7 @@ trigger:
include:
- 'master'
# Release branches
- - '0.*'
+ - '1.*'
paths:
include:
- 'mesonbuild'