-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathrelease-plz.toml
48 lines (46 loc) · 1.39 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[workspace]
git_release_enable = false
git_tag_enable = false
release_always = false
semver_check = false
publish_no_verify = true
changelog_update = false
changelog_path = "./CHANGELOG.md"
pr_name = "retrom-v{{ version }}"
[[package]]
name = "retrom-service"
changelog_update = true
changelog_include = [
'retrom-client',
'retrom-plugin-installer',
'retrom-plugin-launcher',
'retrom-plugin-config',
'retrom-plugin-service-client',
'retrom-plugin-standalone',
'retrom-plugin-steam',
]
git_release_enable = true
git_tag_enable = true
git_release_name = "retrom-v{{ version }}"
git_tag_name = "retrom-v{{ version }}"
[changelog]
commit_parsers = [
{ message = "^feat.*:", group = "Newly Added" },
{ message = "^fix.*:", group = "Bug Fixes" },
]
body = """
## [{{ 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 %}
{%- if commit.scope -%}
- *({{commit.scope}})* {{ 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.body %}
{{ commit.body | indent(first=true) }}\n\n
{% endif %}
{% endfor %}
{% endfor -%}
"""