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.
pull/7960/head
Eli Schwartz 11 months ago committed by Nirbheek Chauhan
parent e65f741e79
commit a1157780ce
  1. 2
      azure-pipelines.yml

@ -19,7 +19,7 @@ trigger:
include:
- 'master'
# Release branches
- '0.*'
- '1.*'
paths:
include:
- 'mesonbuild'

Loading…
Cancel
Save