We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 353ed76 commit 2282bfaCopy full SHA for 2282bfa
.gitcliff.toml
@@ -29,7 +29,11 @@ No notable changes.
29
{% for author_name, author_commits in commits | group_by(attribute="author.email") %}
30
{% set first_commit = author_commits | first %}
31
{% set display_name = first_commit.author.name | default(value=author_name | default(value="Unknown")) %}
32
+{% set author_email = author_name | default(value="") | lower %}
33
+{% set author_label = display_name | lower %}
34
+{% if not (author_email | contains(pat="bot") or author_email | contains(pat="noreply") or author_label | contains(pat="bot")) %}
35
- {{ display_name }} ({{ author_commits | length }} commit{% if author_commits | length > 1 %}s{% endif %})
36
+{% endif %}
37
{% endfor %}
38
{% endif %}
39
0 commit comments