Skip to content

Commit

Permalink
fix: rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
jhj2713 committed Aug 7, 2024
1 parent d19f80e commit 125a07c
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-admin.result == 'success' }}
if: ${{ needs.build.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-admin.result == 'failure' }}
if: ${{ needs.build.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-client.result == 'success' }}
if: ${{ needs.build.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-client.result == 'failure' }}
if: ${{ needs.build.result == 'failure' }}
uses: actions/github-script@v6
with:
script: |
Expand Down

0 comments on commit 125a07c

Please sign in to comment.