mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2026-08-17 16:34:54 -05:00
22 lines
629 B
TOML
22 lines
629 B
TOML
[changelog]
|
|
body = """
|
|
{% if version %}\
|
|
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
{% else %}\
|
|
## [unreleased]
|
|
{% endif %}\
|
|
{% for group, commits in commits | group_by(attribute="group") %}
|
|
### {{ group | striptags | trim | upper_first }}
|
|
{% for commit in commits %}
|
|
- {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
|
|
{% if commit.breaking %}[**breaking**] {% endif %}\
|
|
{{ commit.message | upper_first }}\
|
|
{% if commit.remote.username %} by @{{ commit.remote.username }}{% endif %}\
|
|
{% endfor %}
|
|
{% endfor %}
|
|
"""
|
|
|
|
[remote.github]
|
|
owner = "ilya-zlobintsev"
|
|
repo = "LACT"
|