From da357425b49779810e682729fc192fb2f3ff456d Mon Sep 17 00:00:00 2001 From: riadan710 Date: Thu, 26 Dec 2024 17:24:43 +0900 Subject: [PATCH] =?UTF-8?q?[Feat]=2011=EC=A3=BC=EC=B0=A8=20=EC=8B=A4?= =?UTF-8?q?=EC=8A=B5=20github=20action=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8?= 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..3ad06d2 --- /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 == 'develop' \ No newline at end of file