Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

👷 Ci: push 트리거 제거 #117

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Breifing Dev CI/CD

on:
push:
branches:
- develop
pull_request:
branches:
- develop
Expand All @@ -14,9 +11,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest # (3).OS환경
if: >
(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')
if: github.event.pull_request.merged == true

steps:
- name: Checkout
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/release_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Breifing Release CI/CD

on:
push:
branches:
- release
pull_request:
branches:
- release
Expand All @@ -14,10 +11,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest # (3).OS환경
if: >
(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')

if: github.event.pull_request.merged == true

steps:
- name: Checkout
Expand Down
Loading