Skip to content

Commit

Permalink
👷 Ci: 스크립트 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
swa07016 committed Dec 14, 2023
1 parent c694bcc commit 88f2b54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 88f2b54

Please sign in to comment.