[CI-only] Use pattern matching for release_branches (#16375)

Pattern matching was [recently added](https://github.com/hashicorp/crt-orchestrator/pull/51) so that teams no longer have to explicitly list every branch that should trigger the CRT pipeline. This simplifies release preparation- anytime a new release branch is created, it will produce releasable artifacts and exercise the full pipeline.
This commit is contained in:
Michele Degges
2022-08-10 11:25:10 -07:00
committed by GitHub
parent 7cada26a5c
commit c687f2564a

View File

@@ -10,10 +10,7 @@ project "vault" {
repository = "vault"
release_branches = [
"main",
"release/1.8.x",
"release/1.9.x",
"release/1.10.x",
"release/1.11.x",
"release/**",
]
}
}