Skip to content

Commit

Permalink
fix: pr 액션 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jhj2713 committed Jul 30, 2024
1 parent 10a049b commit 48acb66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/client_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
# 성공 시 코멘트
- name: Add a comment on success
if: ${{ success() }}
if: ${{ needs.build.result == 'success' }}
uses: actions/github-script@v6
with:
script: |
Expand All @@ -44,7 +44,7 @@ jobs:
# 실패 시 코멘트
- name: Add a comment on failure
if: ${{ failure() }}
if: ${{ needs.build.result == 'failure' }}
uses: actions/github-script@v6
with:
script: |
Expand Down

0 comments on commit 48acb66

Please sign in to comment.