From fabf7e4e7e111fc57db9c19825d93a879eaf3d9f Mon Sep 17 00:00:00 2001 From: Ilya Zlobintsev Date: Wed, 12 Aug 2026 12:12:07 +0300 Subject: [PATCH] chore: add commited cliff.toml --- cliff.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 cliff.toml diff --git a/cliff.toml b/cliff.toml new file mode 100644 index 00000000..69cd87ea --- /dev/null +++ b/cliff.toml @@ -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"