Skip to content

Commit

Permalink
docs: add link to commit author in the changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Jun 18, 2021
1 parent 536363d commit 39025be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
{% for commit in commits %}
{%- set s = commit.message | split(pat=":") -%}
{% if s | length > 1 -%}
- {{ commit.short_sha }}: {{ s.0 }} -{{ s.1 }} [{{ commit.author }}]
- {{ commit.short_sha }}: {{ s.0 }} -{{ s.1 }} [@{{ commit.author }}]
{% else -%}
- {{ commit.short_sha }}: {{ commit.message }} [{{ commit.author }}]
- {{ commit.short_sha }}: {{ commit.message }} [@{{ commit.author }}]
{% endif -%}
{%- endfor %}

Expand Down

0 comments on commit 39025be

Please sign in to comment.