From 7ea11a884bf6a41bb5012af0c4fcee0fdf558259 Mon Sep 17 00:00:00 2001 From: AkashiCoin Date: Fri, 11 Oct 2024 21:47:06 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20chore:=20=E8=A1=A5=E5=85=A8relea?= =?UTF-8?q?se=20draft=E6=96=87=E4=BB=B6=20(#1693)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release_draft.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release_draft.yml diff --git a/.github/workflows/release_draft.yml b/.github/workflows/release_draft.yml new file mode 100644 index 00000000..ae43bf8f --- /dev/null +++ b/.github/workflows/release_draft.yml @@ -0,0 +1,17 @@ +name: Release Drafter + +on: + push: + branches: + - main + pull_request: + types: [opened, reopened, synchronize] + +jobs: + update_release_draft: + name: Update Release Draft + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v6 + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}