forked from superplanehq/superplane
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcliff.toml
More file actions
87 lines (63 loc) · 1.82 KB
/
Copy pathcliff.toml
File metadata and controls
87 lines (63 loc) · 1.82 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# git-cliff configuration
# Docs: https://git-cliff.org/docs/integration/github/
[changelog]
header = ""
body = """
{% if version %}
## What's new since {{ previous.version | default(value="the previous release") }}
<!--
CUSTOM SUMMARY PLACEHOLDER
Write the curated release summary here, for example:
### Workflow and execution
...
### 1 new integration
- ...
### Improvements to existing integrations
- ...
### New components and capabilities
- ...
### Agents
- ...
### Breaking changes
- ...
-->
{% endif %}
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
- {{ commit.message | upper_first }}{% if commit.github.username %} by @{{ commit.github.username }}{% endif %}
{% endfor %}
{% endfor %}
{% if version and previous.version %}
---
**Full Changelog**: https://github.com/superplanehq/superplane/compare/{{ previous.version }}...{{ version }}
{% endif %}
"""
trim = true
footer = ""
[git]
conventional_commits = true
filter_unconventional = false
split_commits = false
tag_pattern = "v[0-9]*"
sort_commits = "oldest"
commit_parsers = [
{ message = "^feat", group = "New features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^perf", group = "Improvements" },
{ message = "^refactor", group = "Improvements" },
{ message = "^chore", group = "Improvements" },
{ message = "^docs", group = "Improvements" },
{ message = "^style", group = "Improvements" },
{ message = "^test", group = "Improvements" },
{ message = "^ci", group = "Improvements" },
{ message = "^build", group = "Improvements" },
# fallback for non-conventional commits
{ message = ".*", group = "Improvements" },
]
filter_commits = false
protect_breaking_commits = false
[remote.github]
owner = "superplanehq"
repo = "superplane"
token = "${GITHUB_TOKEN}"