From 6dc4ae4c45e1291369250fc5bc4b501180f03273 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Mon, 2 Dec 2024 15:55:15 +0100 Subject: [PATCH] ci(cz): allow docs as the type of change Signed-off-by: Matej Focko --- .cz.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cz.toml b/.cz.toml index c5d2aa4..037b828 100644 --- a/.cz.toml +++ b/.cz.toml @@ -16,7 +16,7 @@ example = "day(01): solve part 1" schema = "‹type›‹optional scope, e.g., day›: ‹message›\n\n‹body›" schema_pattern = """\ (?s)\ - (chore|ci|day|fix|feat)\ + (chore|ci|day|fix|feat|docs)\ (\\(\\S+\\))?!?:\ ( [^\\n\\r]+)\ ((\\n\\n.*)|(\\s*))?$\ @@ -26,7 +26,7 @@ schema_pattern = """\ name = "change_type" message = "Select the type of change you are commiting" type = "list" -choices = ["day", "feat", "fix", "chore", "ci"] +choices = ["day", "feat", "fix", "docs", "chore", "ci"] [[tool.commitizen.customize.questions]] name = "scope"