Created
February 19, 2015 23:00
-
-
Save Siddhartha90/e69ee51f4f2ae14e3d3f to your computer and use it in GitHub Desktop.
Send to Welcome Widget
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
if [ "$[/myJob/latestBuildOutcome]" = "success" ] | |
then | |
outcome="Green" | |
curl -d '{ "auth_token": "YOUR_AUTH_TOKEN", "text": "Latest Build - $[/myJob/latestBuild] ran for '$[/myJob/latestBuildElapsedTime]' hours, and was '$outcome' woo! ", "isGreen": 3}' \http://yourdashingurl:3030/widgets/welcome | |
else | |
outcome="Red" | |
curl -d '{ "auth_token": "YOUR_AUTH_TOKEN", "text": "$[/myJob/latestBuild] ran for $[/myJob/latestBuildElapsedTime] hours, and was '$outcome'! ", "isRed": 3}' \http://yourdashingurl:3030/widgets/welcome | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment