From 830567d6c92454ca049e1c0913c4ed2f69e929e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Tue, 24 Feb 2026 21:53:46 +0900 Subject: [PATCH] =?UTF-8?q?fix:slackSend=EC=97=90=20tokenCredentialId=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20(credential=20null=20=EC=97=90=EB=9F=AC=20?= =?UTF-8?q?=EC=88=98=EC=A0=95)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b158af79..7780d3f9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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}>" } }