From d0731d6ecdb62042e8988c629e995503a284e7db Mon Sep 17 00:00:00 2001 From: msschwartz21 Date: Tue, 6 Aug 2024 12:16:45 -0700 Subject: [PATCH] Add configuration for grouping PRs in release notes into categories --- .github/release.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..399a929a --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,39 @@ +changelog: + categories: + - title: '✨ Features' + labels: + - 'feature' + - 'enhancement' + - title: '🚀 Performance' + labels: + - 'performance' + - title: '🐛 Bug Fixes' + labels: + - 'fix' + - 'bugfix' + - 'bug' + - 'hotfix' + - title: '🧰 Maintenance' + labels: + - 'chore' + - 'dependencies' + - 'tests' + - title: '📚️ Documentation' + labels: + - 'documentation' + - title: 'Miscellaneous' + labels: + - '*' + exclude: + labels: + - 'feature' + - 'enhancement' + - 'performance' + - 'fix' + - 'bugfix' + - 'bug' + - 'hotfix' + - 'chore' + - 'dependencies' + - 'tests' + - 'documentation' \ No newline at end of file