Skip to content

Commit

Permalink
[fix] CI/CD 수정 (#125)
Browse files Browse the repository at this point in the history
* [fix] #123 add condition, not to contain 'deploy' label in dev-cd

* [fix] #123 add condition, to contain 'deploy' label in prod-cd

* [fix] #123 add condition, to contain 'dev' label in dev-cd
  • Loading branch information
tkdwns414 authored Sep 3, 2024
1 parent 252dab2 commit 69e06eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
ci:
if: not contains(github.event.pull_request.labels.*.name, 'deploy')
if: contains(github.event.pull_request.labels.*.name, 'dev')
runs-on: ubuntu-22.04
env:
working-directory: .
Expand Down

0 comments on commit 69e06eb

Please sign in to comment.