Skip to content

Commit

Permalink
fix: cd 트리거 일시적으로 변경 for 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
lilychoibb committed Jul 19, 2024
1 parent ceb13fa commit c6dd346
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name: backend_cd

on:
pull_request:
types: [ closed ]
types: [ opened, reopened, synchronize ]
branches: [ 'main' ]

jobs:
Expand All @@ -22,6 +22,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Early exit
if: ${{ !contains(github.event.pull_request.labels.*.name, '백엔드') }}
run: |
Expand Down

0 comments on commit c6dd346

Please sign in to comment.