diff --git a/conventional_pre_commit/format.py b/conventional_pre_commit/format.py index 3eab9e3..c55b202 100644 --- a/conventional_pre_commit/format.py +++ b/conventional_pre_commit/format.py @@ -74,7 +74,7 @@ def is_merge(self, commit_msg: str = ""): See the documentation, please https://git-scm.com/docs/git-merge. """ commit_msg = self.clean(commit_msg) - return commit_msg.lower().startswith("merge branch ") + return commit_msg.lower().startswith(("merge branch ", "merge tag")) class ConventionalCommit(Commit):