Update the matching to use a regexp rather than minimatch

This commit is contained in:
Josh Dales
2023-01-28 15:34:31 -05:00
parent 8c59eccb9d
commit f2b2513f41
2 changed files with 23 additions and 23 deletions

View File

@@ -1,11 +1,11 @@
test-branch:
- branch: "test/**"
- branch: "^test/"
feature-branch:
- branch: "*/feature/*"
- branch: "/feature/"
bug-branch:
- branch: "{bug,fix}/*"
- branch: "^bug/|fix/"
array-branch:
- branch: ["array/*"]
- branch: ["^array/"]