forked from opensearch-project/ml-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraft-release-notes-config.yml
45 lines (44 loc) · 1 KB
/
draft-release-notes-config.yml
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
# The overall template of the release notes
template: |
Compatible with OpenSearch (**set version here**).
$CHANGES
# Setting the formatting and sorting for the release notes body
name-template: Version (set version here)
change-template: "* $TITLE ([#$NUMBER]($URL))"
sort-by: merged_at
sort-direction: ascending
replacers:
- search: "##"
replace: "###"
# Organizing the tagged PRs into unified ODFE categories
categories:
- title: "Breaking changes"
labels:
- "breaking change"
- title: "Features"
labels:
- "feature"
- title: "Enhancements"
labels:
- "enhancement"
- title: "Bug Fixes"
labels:
- "bug"
- "bug fix"
- title: "Infrastructure"
labels:
- "infra"
- "test"
- "dependencies"
- "github actions"
- title: "Documentation"
labels:
- "documentation"
- title: "Maintenance"
labels:
- "version upgrade"
- "odfe release"
- title: "Refactoring"
labels:
- "refactor"
- "code quality"