From e8c43c9042766117d0d66a417b9dd8d2a734d74a Mon Sep 17 00:00:00 2001 From: Gyeongjae Choi Date: Mon, 15 Jun 2026 20:31:50 +0900 Subject: [PATCH] chore: do not trigger release when only tests file are updated --- packages/cli/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/pyproject.toml b/packages/cli/pyproject.toml index 85d2adf..beb4709 100644 --- a/packages/cli/pyproject.toml +++ b/packages/cli/pyproject.toml @@ -156,7 +156,7 @@ env = "GIT_COMMIT_AUTHOR" default = "semantic-release " [tool.semantic_release.commit_parser_options] -path_filters = ["."] +path_filters = [".", "!tests/**"] scope_prefix = "cli" minor_tags = ["feat"] patch_tags = ["fix", "perf"]