mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 02:57:59 +00:00
[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:
@@ -10,10 +10,7 @@ project "vault" {
|
|||||||
repository = "vault"
|
repository = "vault"
|
||||||
release_branches = [
|
release_branches = [
|
||||||
"main",
|
"main",
|
||||||
"release/1.8.x",
|
"release/**",
|
||||||
"release/1.9.x",
|
|
||||||
"release/1.10.x",
|
|
||||||
"release/1.11.x",
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user