From 238410b0720feb62f8a76a03d687c58bfda5aa8d Mon Sep 17 00:00:00 2001 From: 2ghrms Date: Thu, 26 Dec 2024 20:57:27 +0900 Subject: [PATCH] =?UTF-8?q?[CI]=20:=20Github=20Actions=20=EC=8A=A4?= =?UTF-8?q?=ED=81=AC=EB=A6=BD=ED=8A=B8=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev_deploy.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/dev_deploy.yml diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml new file mode 100644 index 0000000..92eb42a --- /dev/null +++ b/.github/workflows/dev_deploy.yml @@ -0,0 +1,11 @@ +name: UMC Dev CI/CD + +on: + pull_request: + 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 == 'woody/main' \ No newline at end of file