From 7bb194e4ec9121cf2cfed325d9b8373f3e05ae74 Mon Sep 17 00:00:00 2001 From: Yuki Sakai <43900255+VeyronSakai@users.noreply.github.com> Date: Sun, 26 May 2024 21:56:39 +0900 Subject: [PATCH] Create release-drafter.yml --- .github/release-drafter.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/release-drafter.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000..3a7a0f6 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,36 @@ +name-template: "$RESOLVED_VERSION" +tag-template: "$RESOLVED_VERSION" +categories: + - title: "Breaking Changes" + labels: + - "breaking changes" + - title: "Features" + labels: + - "enhancement" + - title: "Bug Fixes" + labels: + - "bug" +change-template: "- $TITLE @$AUTHOR (#$NUMBER)" +change-title-escapes: '\<*_&' +version-resolver: + major: + labels: + - "breaking changes" + minor: + labels: + - "enhancement" + patch: + labels: + - "bug" + default: patch +autolabeler: + - label: "bug" + branch: + - '/fix\/.+/' + - label: "enhancement" + branch: + - '/feature\/.+/' +template: | + ## Changes + + $CHANGES