Created
May 25, 2023 11:58
-
-
Save naturalett/5461992dbe7b2d7bea4f5648fda14484 to your computer and use it in GitHub Desktop.
My First Pipeline Slack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage('Clone') { | |
steps { | |
git branch: 'main', url: 'https://github.com/naturalett/hello-world.git' | |
} | |
} | |
} | |
post { | |
success { | |
script { | |
slackSend(channel: "jenkins", message: "my-first-pipeline-slack passed successfully") | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment