From 38f0841aecc696aaeaeb478cd71d4a5a554fbca5 Mon Sep 17 00:00:00 2001 From: Michael Wilkerson Date: Tue, 20 Sep 2022 10:46:36 -0700 Subject: [PATCH 1/2] add `release/**` wild card - branches with a leading `release/` will be categorized as release branches --- .release/ci.hcl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.release/ci.hcl b/.release/ci.hcl index 1506406aa4..3369d98f24 100644 --- a/.release/ci.hcl +++ b/.release/ci.hcl @@ -8,7 +8,10 @@ project "consul-k8s" { github { organization = "hashicorp" repository = "consul-k8s" - release_branches = ["main"] + release_branches = [ + "main", + "release/**", + ] } } From a0ee4bc740dd03514b00cc0f12de645678678e4e Mon Sep 17 00:00:00 2001 From: Michael Wilkerson Date: Tue, 20 Sep 2022 13:52:39 -0700 Subject: [PATCH 2/2] change CRT messaging to be sent to feed-consul-k8s-ci --- .release/ci.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.release/ci.hcl b/.release/ci.hcl index 3369d98f24..cf905516f1 100644 --- a/.release/ci.hcl +++ b/.release/ci.hcl @@ -3,7 +3,7 @@ schema = "1" project "consul-k8s" { team = "consul-k8s" slack { - notification_channel = "CBXF3CGAF" # team-consul-kubernetes + notification_channel = "C0421KHNAV9" # feed-consul-k8s-ci } github { organization = "hashicorp"