Skip to content

Commit

Permalink
Merge pull request #128 from softeerbootcamp4th/fix/action-comment
Browse files Browse the repository at this point in the history
[Fix] action 코멘트 조건 수정
  • Loading branch information
jhj2713 authored Aug 11, 2024
2 parents 81f7e29 + 8e6bd7d commit d7a3b17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/admin_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
steps:
# 성공 시 코멘트
- name: Add a comment on success
if: ${{ needs.build.result == 'success' }}
if: ${{ needs.build-admin.result == 'success' }}
uses: actions/github-script@v6
with:
script: |
Expand All @@ -50,7 +50,7 @@ jobs:
# 실패 시 코멘트
- name: Add a comment on failure
if: ${{ needs.build.result == 'failure' }}
if: ${{ needs.build-admin.result == 'failure' }}
uses: actions/github-script@v6
with:
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/client_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
# 성공 시 코멘트
- name: Add a comment on success
if: ${{ needs.build.result == 'success' }}
if: ${{ needs.build-client.result == 'success' }}
uses: actions/github-script@v6
with:
script: |
Expand All @@ -49,7 +49,7 @@ jobs:
# 실패 시 코멘트
- name: Add a comment on failure
if: ${{ needs.build.result == 'failure' }}
if: ${{ needs.build-client.result == 'failure' }}
uses: actions/github-script@v6
with:
script: |
Expand Down

0 comments on commit d7a3b17

Please sign in to comment.