File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ body = """
11
11
{% endif %}\
12
12
{% for group, commits in commits | group_by(attribute="group") %}
13
13
### {{ group | striptags | trim | upper_first }}
14
- {% for commit in commits %}
14
+ {% for commit in commits | unique(attribute="message") %}
15
15
- {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
16
16
{% if commit.breaking %}[**breaking**] {% endif %}\
17
17
{{ commit.message | upper_first }}\
@@ -42,7 +42,6 @@ commit_parsers = [
42
42
{ message = " ^chore|^ci" , group = " <!-- 7 -->⚙️ Miscellaneous Tasks" },
43
43
{ body = " .*security" , group = " <!-- 8 -->🛡️ Security" },
44
44
{ message = " ^revert" , group = " <!-- 9 -->◀️ Revert" },
45
- {% for commit in commits | unique(attribute =" message" ) %},
46
45
]
47
46
protect_breaking_commits = false
48
47
filter_commits = false
You can’t perform that action at this time.
0 commit comments