All checks were successful
Auto Changelog & Release / release (push) Successful in 6s
48 lines
1.9 KiB
TOML
48 lines
1.9 KiB
TOML
[changelog]
|
|
body = """\
|
|
{{ get_env(name="PACKAGE_NAME") }} ({% if version %}{{ version | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\
|
|
{% for group, commits in commits | group_by(attribute="group") %}
|
|
* {{ group | striptags | trim | upper_first }}:\
|
|
{% for commit in commits %}
|
|
- {% if commit.scope %}({{ commit.scope }}) {% endif %}{{ commit.message | upper_first }}\
|
|
{% endfor %}\
|
|
{% endfor %}
|
|
|
|
-- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_MAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %}
|
|
|
|
"""
|
|
|
|
trim = false
|
|
|
|
[git]
|
|
conventional_commits = true
|
|
filter_unconventional = true
|
|
split_commits = false
|
|
|
|
commit_preprocessors = []
|
|
|
|
commit_parsers = [
|
|
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
|
|
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
|
|
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
|
|
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
|
|
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
|
|
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
|
|
{ message = "^test", group = "<!-- 6 -->🧪 Testing" },
|
|
{ message = "^chore\\(changelog\\)", skip = true },
|
|
{ message = "^chore\\(version\\)", skip = true },
|
|
{ message = "^chore\\(release\\): prepare for", skip = true },
|
|
{ message = "^chore\\(deps.*\\)", skip = true },
|
|
{ message = "^chore\\(pr\\)", skip = true },
|
|
{ message = "^chore\\(pull\\)", skip = true },
|
|
{ message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks" },
|
|
{ body = ".*security", group = "<!-- 8 -->🛡️ Security" },
|
|
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
|
|
{ message = ".*", group = "<!-- 10 -->💼 Other" },
|
|
]
|
|
|
|
tag_pattern = "v[0-9]+\\.[0-9]+\\.[0-9]+"
|
|
filter_commits = false
|
|
topo_order = false
|
|
sort_commits = "newest"
|