From 6e1eb88585e24f07b847f54de8990e9c668b8a32 Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Sat, 9 Oct 2021 18:39:13 +0200 Subject: [PATCH] Add release.yml for automatic release drafts --- .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 0000000..3e9450a --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,24 @@ +# +# This file is used to automatically draft new release changelogs in GitHub. +# Read more: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes +# +changelog: + exclude: + labels: + - 'Action: No Changelog' + categories: + - title: 'Breaking Changes' + labels: + - 'Type: Breaking' + - title: 'Additions' + labels: + - 'Type: New Feature' + - title: 'Changes' + labels: + - 'Type: Enhancement' + - title: 'Fixes' + labels: + - 'Type: Bugfix' + - title: 'Other changes' + labels: + - '*' # Catch every other PR not labeled with an "exclude" label.