From 5a43c2c7f8b6c78c39873ff17150224c079d9a0b Mon Sep 17 00:00:00 2001 From: nahjjun Date: Sun, 4 Jan 2026 14:33:08 +0900 Subject: [PATCH] =?UTF-8?q?:wrench:=20Settings:=20Github=20Action=20CI/CD?= =?UTF-8?q?=20=EC=84=A4=EC=A0=95=EC=9A=A9=20yml=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev_deploy.yml | 10 ++++++++++ 1 file changed, 10 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..730fc8d --- /dev/null +++ b/.github/workflows/dev_deploy.yml @@ -0,0 +1,10 @@ +name: UMC Dev CI/CD +on: + pull_request: + types: [closed] # pr이 닫혔을 때만 실행되도록 설정 + 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' \ No newline at end of file