Skip to content

Commit

Permalink
chore(cliff): exclude merge commits from being added to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
nydragon committed May 30, 2024
1 parent 98873fe commit 000fd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ body = """
{% else %}\
## [unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
{% for group, commits in commits | filter(attribute="merge_commit", value=false) | group_by(attribute="group") %}
### {{ group | striptags | trim | upper_first }}
{% for commit in commits %}
- {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
Expand Down

0 comments on commit 000fd9d

Please sign in to comment.