Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

Commit 1a2dbe2

Browse files
committed
chore(gitcliff): fix merge commits filtered
1 parent 3cb3feb commit 1a2dbe2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cliff.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ body = """
3535
{%- for commit in commits %}
3636
{%- if commit.scope -%}
3737
{% else -%}
38-
- {{ commit.message | upper_first }}
38+
- {{ commit.message | split(pat="\n") | first | upper_first }}
3939
{% if commit.breaking -%}
4040
{% raw %} {% endraw %}- **BREAKING**: {{commit.breaking_description}}
4141
{% endif -%}
@@ -57,7 +57,7 @@ trim = true
5757
# parse the commits based on https://www.conventionalcommits.org
5858
conventional_commits = true
5959
# filter out the commits that are not conventional
60-
filter_unconventional = true
60+
filter_unconventional = false
6161
# process each line of a commit as an individual commit
6262
split_commits = false
6363
# regex for parsing and grouping commits

0 commit comments

Comments
 (0)