From 1530b9c11e7dc4fff5e71e5d981eb032b61698eb Mon Sep 17 00:00:00 2001 From: Henrry Pulgarin <39854568+Henrrypg@users.noreply.github.com> Date: Thu, 20 Jun 2024 11:13:08 -0400 Subject: [PATCH] ci: ignore commits in changelog and release notes - olive (#111) --- pyproject.toml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5a0bcfc1..36a658c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", ] dependencies = [ - "tutor>=17.0.2,<18.0.0" + "tutor>=15.0.0,<16.0.0" ] [project.optional-dependencies] @@ -62,3 +62,12 @@ match = "olive" [tool.semantic_release.changelog.environment] keep_trailing_newline = true + +[tool.semantic_release.changelog] +exclude_commit_patterns = [ + "docs:", + "build:", + "style:", + "chore:", + "test:", +]