From 04c4469d659ddcc674978c25254649179a811abf Mon Sep 17 00:00:00 2001 From: nick evans Date: Mon, 18 Nov 2024 09:59:25 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Add=20release.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I noticed that rdoc and irb have a release.yml. This is slightly different from theirs. It has all of the categories that I've been using for recent releases. It does not add emojis to the category titles, because that seems redundant with emojis for individual PRs. --- .github/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..3ea09e64 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,26 @@ +changelog: + exclude: + labels: + - ignore-for-release + categories: + - title: Breaking Changes + labels: ["breaking"] + - title: Added + labels: ["enhancement"] + - title: Deprecated + labels: ["deprecation"] + - title: Fixed + labels: ["bug"] + - title: Documentation + labels: ["documentation"] + - title: Other Changes + labels: ["*"] + exclude: + labels: + - "tests-only" + - "dependencies" + - "workflows" + authors: + - "dependabot" + - title: Miscellaneous + labels: ["*"]