Skip to content

Commit

Permalink
chore: 프론트엔드 배포 깃헙액션에서 배포 결과 코멘트 작성기능 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
CatyJazzy committed Nov 6, 2024
1 parent ee8aa5f commit 0f5aa55
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/FRONTEND_DEPLOY.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,16 +114,6 @@ jobs:
}
});
// 커밋에 배포 결과 코멘트 작성
await github.rest.repos.createCommitComment({
owner: context.repo.owner,
repo: context.repo.name,
commit_sha: context.sha,
body: finalOutcome === 'success'
? '🎉 프론트엔드(+ shared package)가 성공적으로 배포되었습니다!'
: `❌ 배포에 실패했습니다. ${sharedOutcome === 'failure' ? 'shared package build' : 'frontend deploy'}의 단계를 살펴보세요.`
});
// 실패 시 워크플로우를 실패 상태로 만듦
if (finalOutcome === 'failure') {
core.setFailed('Deployment process failed');
Expand Down

0 comments on commit 0f5aa55

Please sign in to comment.