From d4205ccba86d5781cf9b538bb9f2a5110813e776 Mon Sep 17 00:00:00 2001 From: phaer Date: Tue, 15 Mar 2022 01:05:01 +0100 Subject: [PATCH] Add github release notes config --- .github/release.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/release.yaml diff --git a/.github/release.yaml b/.github/release.yaml new file mode 100644 index 0000000..57cbe97 --- /dev/null +++ b/.github/release.yaml @@ -0,0 +1,22 @@ +changelog: + exclude: + labels: + - ignore-for-release + authors: + - octocat + categories: + - title: Breaking Changes 🛠 + labels: + - Semver-Major + - breaking-change + - title: New Features 🎉 + labels: + - Semver-Minor + - enhancement + - title: Bug Fixes 🐛 + labels: + - Semver-Patch + - bug + - title: Other Changes + labels: + - "*"