Skip to content

Instantly share code, notes, and snippets.

@Siddhartha90
Created February 19, 2015 23:00
Show Gist options
  • Save Siddhartha90/e69ee51f4f2ae14e3d3f to your computer and use it in GitHub Desktop.
Save Siddhartha90/e69ee51f4f2ae14e3d3f to your computer and use it in GitHub Desktop.
Send to Welcome Widget
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