From 5446a090297c04c06de4502a31d2f38cc7b8a6c5 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Tue, 5 Dec 2017 10:35:12 +0200 Subject: [PATCH] send message with build version in slack (parametrized build) (#495) --- Jenkinsfile-manual | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile-manual b/Jenkinsfile-manual index 3c1916315..2e6756556 100644 --- a/Jenkinsfile-manual +++ b/Jenkinsfile-manual @@ -100,6 +100,8 @@ node('linux') { buildInfo.name = 'status-go (' + gitBranch + '-' + gitShortSHA + ')' server.upload(uploadSpec, buildInfo) server.publishBuildInfo(buildInfo) + + slackSend color: 'good', message: 'status-go `' + version + '` was built successfully. ' + env.BUILD_URL } } }