From 8175f275c979d106b2037e7b3c10abe15c3c8c30 Mon Sep 17 00:00:00 2001 From: Piotr Kazmierczak <470696+pkazmierczak@users.noreply.github.com> Date: Fri, 5 Sep 2025 16:42:42 +0200 Subject: [PATCH] tooling: add 'feature' changelog msg type for make cl (#26709) --- tools/cl-entry/main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/cl-entry/main.go b/tools/cl-entry/main.go index 7abe47b8b..db7c1d30b 100644 --- a/tools/cl-entry/main.go +++ b/tools/cl-entry/main.go @@ -25,6 +25,7 @@ const ( 4. breaking-change 5. note 6. deprecation + 7. feature (for major features) Enter Kind => ` note = `Write a note, for example @@ -96,8 +97,10 @@ func label(n int) (string, error) { label = "note" case 6: label = "deprecation" + case 7: + label = "feature" default: - return "", errors.New("not a valid type, must be 1-6") + return "", errors.New("not a valid type, must be 1-7") } return label, nil }