Skip to content

Commit

Permalink
Removed hash from changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
asasine committed Oct 19, 2024
1 parent d4962aa commit 5c60990
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ body = """
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
- {%- if commit.scope %} *({{commit.scope}})* {%- endif -%}\
- {%- if commit.scope %} *({{commit.scope}})* {%- endif -%} \
{%- if commit.breaking %} [**breaking**] {%- endif %} \
{{ commit.message -}} \
{{- self::code_link(commit=commit) }}{{ self::username(commit=commit) }}
{{- self::username(commit=commit) }}
{% endfor -%}
{% endfor %}
{%- macro code_link(commit) -%}
{% if commit.remote.pr_number %} - #{{ commit.remote.pr_number }} {%- else %} - {{ commit.id }} {%- endif %}
{%- endmacro %}
{%- macro username(commit) -%}
{% if commit.remote.username %} by @{{ commit.remote.username }} {%- endif -%}
{%- endmacro %}
Expand Down

0 comments on commit 5c60990

Please sign in to comment.