From 3acb9b54d03386ae42fdb0503248d70a81a63bf4 Mon Sep 17 00:00:00 2001 From: henrrypg Date: Wed, 19 Jun 2024 14:24:18 -0500 Subject: [PATCH] ci: ignore commits in changelog and release notes --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f8b2dbc5..a3c6e2a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,3 +62,12 @@ match = "(main|master)" [tool.semantic_release.changelog.environment] keep_trailing_newline = true + +[tool.semantic_release.changelog] +exclude_commit_patterns = [ + "docs:", + "build:", + "style:", + "chore:", + "test:", +]