Skip to content

Commit

Permalink
azure pipelines: fix branch patterns to support 1.x release branches
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
eli-schwartz authored and nirbheek committed May 24, 2023
1 parent e65f741 commit a115778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ trigger:
include:
- 'master'
# Release branches
- '0.*'
- '1.*'
paths:
include:
- 'mesonbuild'
Expand Down

0 comments on commit a115778

Please sign in to comment.