-
Notifications
You must be signed in to change notification settings - Fork 4
/
release-plz.toml
23 lines (22 loc) · 930 Bytes
/
release-plz.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[workspace]
git_tag_name = "{{ package }}/v{{ version }}"
[changelog]
# This is based off the default, but adds breaking change description.
# https://release-plz.ieni.dev/docs/config#the-body-field
body = """
\n
## [{{ version | trim_start_matches(pat="v") }}]{%- if release_link -%}({{ release_link }}){% endif %} - {{ timestamp | date(format="%Y-%m-%d") }}
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
\n
{%- if commit.scope -%}
- *({{commit.scope}})* {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}{%- if commit.links %} ({% for link in commit.links %}[{{link.text}}]({{link.href}}) {% endfor -%}){% endif %}
{% else -%}
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}\
{% endif -%}
{% if commit.breaking %}\n - _{{ commit.breaking_description }}_ {% endif %}
{% endfor -%}
{% endfor %}
\n
"""