Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Automate release notes to unified standard #191

Merged
merged 1 commit into from
Jul 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 31 additions & 20 deletions .github/draft-release-notes-config.yml
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"