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