From f7f5be7de18a73c0d804b71908752c8e510a3bc6 Mon Sep 17 00:00:00 2001 From: Hadrianl_yang <137150224@qq.com> Date: Tue, 16 Feb 2021 20:01:18 +0800 Subject: [PATCH] Create release-drafter.yml --- .github/workflows/release-drafter.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..154bf6f --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,18 @@ +name: Release Drafter + +on: + push: + # branches to consider in the event; optional, defaults to all + tags: + - v* + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5 + # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml + # with: + # config-name: my-config.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}