fix: Checkout 단계 slackSend에 tokenCredentialId 추가

This commit is contained in:
2026-02-24 22:16:01 +09:00
parent 7809285b1d
commit b3e7ef63f6

2
Jenkinsfile vendored
View File

@@ -9,7 +9,7 @@ pipeline {
stages {
stage('Checkout') {
steps {
slackSend channel: '#product_infra', color: '#439FE0',
slackSend channel: '#product_infra', color: '#439FE0', tokenCredentialId: 'slack-token',
message: "🚀 *react* 빌드 시작 (`${env.BRANCH_NAME}`)\n<${env.BUILD_URL}|빌드 #${env.BUILD_NUMBER}>"
checkout scm
}