From 4d69b7e207cc55109ed450b0d22f047bc3e66202 Mon Sep 17 00:00:00 2001 From: swa07016 Date: Mon, 16 Oct 2023 02:54:30 +0900 Subject: [PATCH] =?UTF-8?q?:green=5Fheart:=20Ci:=20=EB=B9=8C=EB=93=9C=20?= =?UTF-8?q?=EC=8A=A4=ED=81=AC=EB=A6=BD=ED=8A=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 두 종류의 트리거를 지원합니다 --- .github/workflows/dev_deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index c0cb1a0..5e0f478 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -5,13 +5,15 @@ on: branches: - develop pull_request: + branches: + - develop types: [closed] workflow_dispatch: # (2).수동 실행도 가능하도록 jobs: build: runs-on: ubuntu-latest # (3).OS환경 - if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop' + if: github.event.pull_request && github.event.pull_request.merged == true steps: - name: Checkout