From b4c85d2ccac3f2023eb8abc2a8976fe80c91d366 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 18 Oct 2024 11:54:52 +0200 Subject: [PATCH] Remove Slack Notification. --- Jenkinsfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 881fa33..db39fc1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -65,13 +65,6 @@ pipeline { script { sh "ci/build-spring-data-release-cli.bash" sh "ci/build-and-distribute.bash ${p['release.version']}" - - slackSend( - color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger', - channel: '#spring-data-dev', - message: (currentBuild.currentResult == 'SUCCESS') - ? "`${env.BUILD_URL}` - Build and distribute ${p['release.version']} passed! Release the build (if needed)." - : "`${env.BUILD_URL}` - Build and distribute ${p['release.version']} failed!") } } }