From 37b11cfa21885611462461f50db8f783f02bdc66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9D=80=EB=B9=84?= <61505572+dldmsql@users.noreply.github.com> Date: Tue, 2 May 2023 19:39:55 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20release=20=EC=9E=90=EB=8F=99=20?= =?UTF-8?q?=EB=B0=9C=ED=96=89=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-drafter.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..0c30792f --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,17 @@ +name: Release Drafter +on: + push: + branches: + - main +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5 + # (Optional) + # workflow 에서 여러 구성이 필요할 때 config-name 에 오버라이드 해줍니다. + # 반드시 .github/ 에 위치해야합니다. + with: + config-name: release-drafter-config.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}