-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathtowncrier.toml
42 lines (36 loc) · 1.17 KB
/
towncrier.toml
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
[tool.towncrier]
# If you change the values for directory or filename, make sure to look for them in the code as well.
directory = "changelog.d"
filename = "CHANGELOG.md"
start_string = "<!-- towncrier release notes start -->\n"
underlines = ["", "", ""]
template = "changelog_template.jinja"
title_format = "## {version} / {project_date}"
# We automatically link to PRs, but towncrier only has an issue template so we abuse that.
issue_format = "([#{issue}](https://github.com/DataDog/integrations-core/pull/{issue}))"
# The order of entries matters! It controls the order in which changelog sections are displayed.
# https://towncrier.readthedocs.io/en/stable/configuration.html#use-a-toml-array-defined-order
[[tool.towncrier.type]]
directory="removed"
name = "Removed"
showcontent = true
[[tool.towncrier.type]]
directory="changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory="security"
name = "Security"
showcontent = true
[[tool.towncrier.type]]
directory="deprecated"
name = "Deprecated"
showcontent = true
[[tool.towncrier.type]]
directory="added"
name = "Added"
showcontent = true
[[tool.towncrier.type]]
directory="fixed"
name = "Fixed"
showcontent = true