forked from greenbone/openvas-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease_tag.toml
More file actions
24 lines (20 loc) · 754 Bytes
/
release_tag.toml
File metadata and controls
24 lines (20 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# disables labeling when this label is on a PR
disable_on = "no_release"
# The priority is used when only_highest_priority is set to true
labels = [
{ name = "patch_release", priority = 1 },
{ name = "minor_release", priority = 2 },
{ name = "major_release", priority = 3 },
]
# group within groups must be defined in `changelog.toml`
# label within groups must be defined in `labels`
groups = [
{ group = "Added", label = "minor_release" },
{ group = "Changed", label = "major_release" },
{ group = "Removed", label = "major_release" },
{ group = "Bug Fixes", label = "patch_release" },
]
# when set to false all unique labels will be set
# otherwise only one label with the highest priority
# will be set
only_highest_priority = true