chore: add commited cliff.toml

This commit is contained in:
Ilya Zlobintsev
2026-08-12 12:12:07 +03:00
parent 2de96cc228
commit fabf7e4e7e
+21
View File
@@ -0,0 +1,21 @@
[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"