[fix] zoneId가 userId를 입력받지 않고 있던 문제 해결 #26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # name: CD - DEVELOP | |
| # on: #이 워크플로우가 언제 실행될지 트리거를 정의함. | |
| # pull_request: | |
| # types : [closed] #누군가가 Pull request를 닫았을 때 실행됨. | |
| # workflow_dispatch: #수동 실행도 가능하도록 | |
| # jobs: #실제 실행할 작업을 정의 | |
| # build: #작업 이름 | |
| # runs-on: ubuntu-latest #OS환경 | |
| # if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop' | |
| # #닫힌 Pull Request 중에서, 병합된 것이고, 병합 대상 브랜치가 develop 브랜치일 경우에만 이 작업을 실행 |