From 0802bc172e5ea7f4fed09785eab6f262497ca3ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Wed, 25 Feb 2026 11:30:57 +0900 Subject: [PATCH] =?UTF-8?q?ci:=EB=8F=99=EC=8B=9C=20=EB=B9=8C=EB=93=9C=20?= =?UTF-8?q?=EB=B0=A9=EC=A7=80=20+=20=EC=9A=B4=EC=98=81=20=EB=B0=B0?= =?UTF-8?q?=ED=8F=AC=20=EC=8A=B9=EC=9D=B8=20Slack=20=EC=95=8C=EB=A6=BC=20(?= =?UTF-8?q?#product=5Fdeploy)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - disableConcurrentBuilds() 추가 - Production Approval 단계에 #product_deploy 채널 알림 추가 Co-Authored-By: Claude Opus 4.6 --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index df9d191..e3eb5c6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,10 @@ pipeline { agent any + options { + disableConcurrentBuilds() + } + environment { DEPLOY_USER = 'hskwon' RELEASE_ID = new Date().format('yyyyMMdd_HHmmss') @@ -50,6 +54,8 @@ pipeline { stage('Production Approval') { when { branch 'main' } steps { + slackSend channel: '#product_deploy', color: '#FF9800', tokenCredentialId: 'slack-token', + message: "🔔 *api* 운영 배포 승인 대기 중\nStage API: https://stage-api.sam.it.kr\n<${env.BUILD_URL}input|승인하러 가기>" timeout(time: 24, unit: 'HOURS') { input message: 'Stage 확인 후 운영 배포를 진행하시겠습니까?\nStage API: https://stage-api.sam.it.kr', ok: '운영 배포 진행'