slackNotify
Jenkins pipeline library to extend Slack notifications
Usage:
SetUp shared lib:
Jenkinsfile:
@Library('slack')_
pipeline {
agent {
any
}
}
... Some pipeline stages ...
post {
always {
notifySlack(currentBuild.currentResult, '#jenkins')
}