fix: multi line commit bodies should be prefixed with correct amount of spaces
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
this allows multi line commit messages to be displayed in a nice manner
This commit is contained in:
parent
e7fdc1813a
commit
b059201aea
@ -245,7 +245,9 @@ fn default_changelog_body_config(release_link: Option<&str>) -> String {
|
|||||||
{% endif -%}
|
{% endif -%}
|
||||||
{%- if commit.body -%}
|
{%- if commit.body -%}
|
||||||
{%- if commit.body | length > 0 -%}
|
{%- if commit.body | length > 0 -%}
|
||||||
{% raw %} {% endraw %}{{ commit.body | trim }}
|
{% for line in commit.body | trim | split(pat="\n") -%}
|
||||||
|
{% raw %} {% endraw %}{{ line | trim }}
|
||||||
|
{% endfor -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
@ -522,7 +524,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
let commits: Vec<&str> = vec![
|
let commits: Vec<&str> = vec![
|
||||||
"feat: some feature
|
"feat: some feature
|
||||||
|
|
||||||
some body",
|
some body
|
||||||
|
and another line",
|
||||||
"some random commit",
|
"some random commit",
|
||||||
"fix: some fix",
|
"fix: some fix",
|
||||||
"chore(scope): some chore",
|
"chore(scope): some chore",
|
||||||
@ -544,6 +547,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Added
|
### Added
|
||||||
- some feature
|
- some feature
|
||||||
some body
|
some body
|
||||||
|
and another line
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- some fix
|
- some fix
|
||||||
|
Loading…
Reference in New Issue
Block a user