forgejo-todo-checker/release-plz.toml
Paul Campbell 617cee7900
All checks were successful
Test / checks (map[name:nightly]) (push) Successful in 2m50s
Test / checks (map[name:stable]) (push) Successful in 5m15s
Release Please / Release-plz (push) Successful in 41s
build: customise release-plz
2024-09-22 13:41:30 +01:00

25 lines
928 B
TOML

[workspace]
# Disable git releases for all packages by default
git_release_enable = true
# Disable git tags for all packages by default
git_tag_enable = true
# set the path of all the crates to the changelog to the root of the repository
changelog_path = "./CHANGELOG.md"
[changelog]
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}})* {% 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 -%}
{% endfor -%}
{% endfor -%}
"""