Remove Slack Notification.

This commit is contained in:
Mark Paluch
2024-10-18 11:54:52 +02:00
parent 20d76062e7
commit b4c85d2cca

7
Jenkinsfile vendored
View File

@@ -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!")
}
}
}