From 24b0cda11ab1cdb44db38f9ded3a48134d14333e Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Sun, 20 Nov 2022 20:43:57 +0100 Subject: [PATCH] docs: configure the auto-generated release notes (#142) Add the configuration file for the GitHub releases. --- .github/release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 000000000..374a8bf5d --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,24 @@ +changelog: + exclude: + labels: + - dependencies + - skip-changelog + categories: + - title: 🎉 New Features + labels: + - enhancement + - title: 🐛 Bug Fixes + labels: + - bug + - title: 📝 Documentation + labels: + - documentation + - title: ⚙️ Refactor + labels: + - refactor + - title: 🛠 Chore + labels: + - chore + - title: Other Changes + labels: + - "*"