From 88f2b5451e17ee3bbe96c56925bf98fd4b0b6d24 Mon Sep 17 00:00:00 2001 From: swa07016 Date: Thu, 14 Dec 2023 18:21:08 +0900 Subject: [PATCH] =?UTF-8?q?:construction=5Fworker:=20Ci:=20=EC=8A=A4?= =?UTF-8?q?=ED=81=AC=EB=A6=BD=ED=8A=B8=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev_deploy.yml | 2 +- .github/workflows/release_deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index 17a9c4e..313a1de 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -15,7 +15,7 @@ jobs: build: runs-on: ubuntu-latest # (3).OS환경 if: > - (github.event_name == 'push' && github.ref == 'refs/heads/develop') || + (github.event_name == 'push' && github.ref == 'refs/heads/develop' && github.event.head_commit.message !~ /Merge pull request #\d+ from .+/) || (github.event_name == 'pull_request' && github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop') steps: diff --git a/.github/workflows/release_deploy.yml b/.github/workflows/release_deploy.yml index ffce140..5c3b78a 100644 --- a/.github/workflows/release_deploy.yml +++ b/.github/workflows/release_deploy.yml @@ -15,7 +15,7 @@ jobs: build: runs-on: ubuntu-latest # (3).OS환경 if: > - (github.event_name == 'push' && github.ref == 'refs/heads/release') || + (github.event_name == 'push' && github.ref == 'refs/heads/release' && github.event.head_commit.message !~ /Merge pull request #\d+ from .+/) || (github.event_name == 'pull_request' && github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'release')