Gist for https://www.youtube.com/watch?v=EDVZli8GdUM
pipeline {
  agent any
  stages {
    stage('Slack') {
      steps {
        slackSend message: 'test message'
      }
    }
  }
}
pipeline {
  agent any
  stages {
    stage('Slack') {
      steps {
        slackSend color: 'good', message: 'test message'
      }
    }
  }
}