-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcliff.toml
More file actions
29 lines (25 loc) · 1.04 KB
/
Copy pathcliff.toml
File metadata and controls
29 lines (25 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[changelog]
header = """
# Changelog
All notable changes are documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
"""
body = """
## What's New
{% for commit in commits %}{% if commit.author.name is not containing("[bot]") %}- {{ commit.message | split(pat="\n") | first | trim }} (by @{{ commit.author.name }}){% if commit.github.pr_number %} (#{{ commit.github.pr_number }}){% endif %} [{{ commit.id | truncate(length=7, end="") }}]
{% endif %}{% endfor %}
{% if previous.version %}**Full changelog:** [{{ previous.version }}..{{ version }}](https://github.com/areebahmeddd/airhop/compare/{{ previous.version }}..{{ version }})
{% endif %}
"""
footer = ""
trim = false
[git]
conventional_commits = false
filter_unconventional = false
filter_commits = true
commit_parsers = [
{ message = "^[a-z]+(\\(.+?\\))?!?:", skip = false },
{ message = ".*", skip = true },
]
tag_pattern = "v[0-9].*"
topo_order = false
sort_commits = "newest"