This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automate release notes to unified standard (#191)
- Loading branch information
Showing
1 changed file
with
31 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,46 @@ | ||
# The overall template of the release notes | ||
template: | | ||
Compatible with Elasticsearch (**set version here**) and Open Distro for Elasticsearch (**set version here**). | ||
Compatible with Elasticsearch (**set version here**). | ||
$CHANGES | ||
# Setting the formatting and sorting for the release notes body | ||
name-template: Version (set version here) | ||
change-template: '- $TITLE (PR #$NUMBER)' | ||
change-template: "* $TITLE (#$NUMBER)" | ||
sort-by: merged_at | ||
sort-direction: ascending | ||
replacers: | ||
- search: "##" | ||
replace: "###" | ||
|
||
# Organizing the tagged PRs into categories | ||
# Organizing the tagged PRs into unified ODFE categories | ||
categories: | ||
- title: 'Breaking Changes' | ||
- title: "Breaking changes" | ||
labels: | ||
- "breaking change" | ||
- title: "Features" | ||
labels: | ||
- "feature" | ||
- title: "Enhancements" | ||
labels: | ||
- 'breaking change' | ||
- title: 'Major Changes' | ||
- "enhancement" | ||
- title: "Bug Fixes" | ||
labels: | ||
- 'feature' | ||
- title: 'Enhancements' | ||
- "bug" | ||
- "bug fix" | ||
- title: "Infrastructure" | ||
labels: | ||
- 'enhancement' | ||
- title: 'Bug Fixes' | ||
- "infra" | ||
- "test" | ||
- "dependencies" | ||
- "github actions" | ||
- title: "Documentation" | ||
labels: | ||
- 'bug' | ||
- 'bug fix' | ||
- title: 'Infra Changes' | ||
- "documentation" | ||
- title: "Maintenance" | ||
labels: | ||
- 'infra' | ||
- 'test' | ||
- 'documentation' | ||
- 'dependencies' | ||
- title: 'Version Upgrades' | ||
- "version upgrade" | ||
- "odfe release" | ||
- title: "Refactoring" | ||
labels: | ||
- 'version upgrade' | ||
- 'odfe-release' | ||
- "refactor" | ||
- "code quality" |