diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cliff.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cliff.toml b/.github/workflows/cliff.toml index 0d04a13f..ac6a0b3a 100644 --- a/.github/workflows/cliff.toml +++ b/.github/workflows/cliff.toml @@ -19,7 +19,7 @@ body = """ {% for commit in commits | filter(attribute="scope") | sort(attribute="scope") %} - - _({{commit.scope}})_ {{ commit.message | upper_first }} + - _({{commit.scope}})_ {{ commit.message }} {%- if commit.breaking %} {% raw %} {% endraw %}- **BREAKING**: {{commit.breaking_description}} {%- endif -%} @@ -27,7 +27,7 @@ body = """ {% for commit in commits %} {%- if commit.scope -%} {% else -%} - - {{ commit.message | upper_first }} + - {{ commit.message }} {% if commit.breaking -%} {% raw %} {% endraw %}- **BREAKING**: {{commit.breaking_description}} {% endif -%} |