diff --git a/Jenkinsfile b/Jenkinsfile index 6ffb78839..e7fd9e27b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,6 +30,11 @@ pipeline { echo 'Deploy' } } - } -} \ No newline at end of file + post { + success { + slackSend channel: '#noti', + color: 'good', + message: "The pipeline ${currentBuild.fullDisplayName} completed successfully." + } +}