ci:Jenkinsfile 빌드 시작 Slack 알림 추가

This commit is contained in:
2026-02-24 21:00:04 +09:00
parent 4681a2a6a4
commit 1a4a009543

6
Jenkinsfile vendored
View File

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