From d57aa27a2304ea51ff414a88792efd30e3ef27a4 Mon Sep 17 00:00:00 2001 From: UnluckyNinja Date: Mon, 25 Nov 2024 07:32:59 +0800 Subject: [PATCH] chore: fix action --- .github/release-drafter.yml | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 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..93a8e11 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,47 @@ +# Credits: https://blog.jromanmartin.io/2023/06/12/Improving-a-gh-repository.html +# This release drafter follows the conventions from https://keepachangelog.com + +name-template: '$RESOLVED_VERSION' +tag-template: '$RESOLVED_VERSION' +template: | + ## What Changed 👀 + + $CHANGES + + **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$RESOLVED_VERSION +categories: + - title: 🚀 Features + labels: + - feature + - enhancement + - title: 🐛 Bug Fixes + labels: + - fix + - bug + - title: ⚠️ Changes + labels: + - changed + - title: ⛔️ Deprecated + labels: + - deprecated + - title: 🗑 Removed + labels: + - removed + - title: 🔐 Security + labels: + - security + - title: 📄 Documentation + labels: + - docs + - documentation + - title: 🧩 Dependency Updates + labels: + - deps + - dependencies + collapse-after: 5 + +change-template: '* $TITLE (#$NUMBER)' +change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. + +exclude-labels: + - skip-changelog