ci:Jenkinsfile Slack 알림 추가 (slackSend #product_infra)

This commit is contained in:
2026-02-24 20:45:49 +09:00
parent be3a6c0596
commit 4681a2a6a4

10
Jenkinsfile vendored
View File

@@ -114,7 +114,13 @@ pipeline {
}
post {
success { echo '✅ react 배포 완료 (' + env.BRANCH_NAME + ')' }
failure { echo '❌ react 배포 실패 (' + env.BRANCH_NAME + ')' }
success {
slackSend channel: '#product_infra', color: 'good',
message: "✅ *react* 배포 성공 (`${env.BRANCH_NAME}`)\n<${env.BUILD_URL}|빌드 #${env.BUILD_NUMBER}>"
}
failure {
slackSend channel: '#product_infra', color: 'danger',
message: "❌ *react* 배포 실패 (`${env.BRANCH_NAME}`)\n<${env.BUILD_URL}|빌드 #${env.BUILD_NUMBER}>"
}
}
}