forked from petgraph/petgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-plz.toml
More file actions
39 lines (33 loc) · 1.11 KB
/
release-plz.toml
File metadata and controls
39 lines (33 loc) · 1.11 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
[workspace]
pr_draft = true
git_tag_name = "{{ package }}@v{{ version }}"
# Include a list of contributors in the release body
git_release_body = """
{{ changelog }}
{% if remote.contributors %}
### Contributors
{% for contributor in remote.contributors %}
* @{{ contributor.username }}
{% endfor %}
{% endif %}
"""
[changelog]
sort_commits = "oldest"
protect_breaking_commits = true
header = """# Changelog
All notable changes to this project will be documented in this file.
"""
commit_parsers = [
{ message = "^feat", group = "New Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^docs", group = "Documentation" },
{ message = "^style", group = "Styling" },
{ message = "^refactor", group = "Refactor" },
{ message = "^perf", group = "Performance" },
{ message = "^test", group = "Testing" },
{ message = "^chore", group = "Miscellaneous Tasks", skip = true },
{ message = "^revert", group = "Reverted changes", skip = true },
{ message = "^ci", group = "CI", skip = true },
# Keep all the untagged commits
{ message = "^.*", group = "Other changes" },
]