From 102ac7732170b8defd0787855c1ca9a70436ab90 Mon Sep 17 00:00:00 2001 From: Henrry Pulgarin <39854568+Henrrypg@users.noreply.github.com> Date: Thu, 20 Jun 2024 11:12:34 -0400 Subject: [PATCH] ci: ignore commits in changelog and release notes (#112) --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e31bfbb3..a3a79351 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,3 +62,12 @@ match = "palm" [tool.semantic_release.changelog.environment] keep_trailing_newline = true + +[tool.semantic_release.changelog] +exclude_commit_patterns = [ + "docs:", + "build:", + "style:", + "chore:", + "test:", +]