From 1e8e7fea7de598cd629af973bb15f781b0beb1ad Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 7 Dec 2020 22:01:25 +0200 Subject: [PATCH 1/2] Add categories to Release Drafter [CI skip] --- .github/release-drafter.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 0412bd9dd4c..aa49c2ec040 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -2,6 +2,18 @@ name-template: "$NEXT_MINOR_VERSION" tag-template: "$NEXT_MINOR_VERSION" change-template: '- $TITLE #$NUMBER [@$AUTHOR]' +categories: + - title: "Dependencies" + label: "Dependencies" + - title: "Deprecations" + label: "Deprecation" + - title: "Documentation" + label: "Documentation" + - title: "Removals" + label: "Removal" + - title: "Testing" + label: "Testing" + exclude-labels: - "changelog: skip" From 786fddb794f68dd3f7c68ba9b9ce51fc6abd3699 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 8 Dec 2020 12:23:53 +0200 Subject: [PATCH 2/2] Fix label name Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- .github/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index aa49c2ec040..4d855469a12 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -4,7 +4,7 @@ change-template: '- $TITLE #$NUMBER [@$AUTHOR]' categories: - title: "Dependencies" - label: "Dependencies" + label: "Dependency" - title: "Deprecations" label: "Deprecation" - title: "Documentation"