mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
677 B
677 B
${docGenStepName}
${docGenDescription}
Prerequisites
- Installed and configured Slack JenkinsCI integration
- secret text Jenkins credentials with the Slack token
- Installed and configured Jenkins Slack plugin
${docGenParameters}
${docGenConfiguration}
${docJenkinsPluginDependencies}
Example
Usage of pipeline step:
pipeline {
agent any
stages {
stage('Build') {
steps {
echo "do something"
}
}
}
post {
always {
slackSendNotification script: this
}
}
}