-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrelease-plz.toml
More file actions
36 lines (29 loc) · 882 Bytes
/
release-plz.toml
File metadata and controls
36 lines (29 loc) · 882 Bytes
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
# release-plz configuration
# https://release-plz.ieni.dev/docs/config
[workspace]
# Create GitHub releases when publishing
release = true
# Update changelog
changelog_update = true
# Commit message for version bumps
git_release_name = "v{{ version }}"
# PR settings
pr_labels = ["release"]
[changelog]
# Changelog format
body = """
## What's Changed
{% for commit in commits %}
- {{ commit.message }} ({{ commit.id | truncate(length=7, end="") }})
{% endfor %}
"""
# Commit types to include in changelog
commit_parsers = [
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^docs", group = "Documentation" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactoring" },
{ message = "^test", group = "Testing" },
{ message = "^chore", group = "Miscellaneous" },
]