From 8b23916185ba2ad0fa87df5c73e33dd5820e3ae4 Mon Sep 17 00:00:00 2001 From: Piotr Czeglik Date: Thu, 21 Nov 2024 07:52:04 +0100 Subject: [PATCH] ci: use conventional commits preset for commit-analyzer commit-analyzer by default uses the angular preset, which do not follow the conventional commits specification. This commit changes the preset to conventionalcommits https://www.conventionalcommits.org/en/v1.0.0/ --- .releaserc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.releaserc b/.releaserc index 4550035..3ab8369 100644 --- a/.releaserc +++ b/.releaserc @@ -3,7 +3,12 @@ "main" ], "plugins": [ - "@semantic-release/commit-analyzer", + [ + "@semantic-release/commit-analyzer", + { + "preset": "conventionalcommits", + } + ], "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm",