fix:slackSend에 tokenCredentialId 추가 (credential null 에러 수정)

This commit is contained in:
2026-02-24 21:53:46 +09:00
parent 1a4a009543
commit 830567d6c9

4
Jenkinsfile vendored
View File

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