From 74608abce477fcbc4e6d5c06094b0ff041b830f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Thu, 5 Mar 2026 11:32:18 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20[infra]=20Slack=20=EC=95=8C=EB=A6=BC?= =?UTF-8?q?=20=EC=B1=84=EB=84=90=20=EB=B6=84=EB=A6=AC=20=E2=80=94=20produc?= =?UTF-8?q?t=5Finfra=20=E2=86=92=20deploy=5Fmng?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d16c24c..14197e0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,7 @@ pipeline { stages { stage('Checkout') { steps { - slackSend channel: '#product_infra', color: '#439FE0', + slackSend channel: '#deploy_mng', color: '#439FE0', message: "πŸš€ *sales* λΉŒλ“œ μ‹œμž‘ (`${env.BRANCH_NAME}`)\n<${env.BUILD_URL}|λΉŒλ“œ #${env.BUILD_NUMBER}>" checkout scm } @@ -35,11 +35,11 @@ pipeline { post { success { - slackSend channel: '#product_infra', color: 'good', + slackSend channel: '#deploy_mng', color: 'good', message: "βœ… *sales* 배포 성곡 (`${env.BRANCH_NAME}`)\n<${env.BUILD_URL}|λΉŒλ“œ #${env.BUILD_NUMBER}>" } failure { - slackSend channel: '#product_infra', color: 'danger', + slackSend channel: '#deploy_mng', color: 'danger', message: "❌ *sales* 배포 μ‹€νŒ¨ (`${env.BRANCH_NAME}`)\n<${env.BUILD_URL}|λΉŒλ“œ #${env.BUILD_NUMBER}>" } }