Last active
July 6, 2022 07:48
-
-
Save pmandreoli/e39396ba61f4db8496f9455c9a4dc9cb to your computer and use it in GitHub Desktop.
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 | |
| options { disableConcurrentBuilds() } | |
| stages { | |
| stage('hello-world') { | |
| steps { | |
| sh ''' | |
| echo "hello world" | |
| ''' | |
| } | |
| } | |
| } | |
| post { | |
| always { | |
| cleanWs() | |
| } | |
| success { | |
| sh 'curl -s -X POST https://api.telegram.org/bot${API_BOT}/sendMessage -d chat_id=-704562263 -d text="${JOB_NAME}: GALAXY PLAYBOOK RUN SUCCESSFUL!! executed on ${NODE_NAME} more info at ${BUILD_URL}"' | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment