Skip to content

Instantly share code, notes, and snippets.

@sacOO7
Created July 8, 2020 19:00
Show Gist options
  • Select an option

  • Save sacOO7/3c7687a7d11bcf5db1128d6ae16ca389 to your computer and use it in GitHub Desktop.

Select an option

Save sacOO7/3c7687a7d11bcf5db1128d6ae16ca389 to your computer and use it in GitHub Desktop.
Google chat failure notification
#!/bin/bash
curl --header "Content-Type: application/json" \
--request POST \
--data "{\"cards\":[{\"header\":{\"title\":\"Oops. ${CIRCLE_JOB} failed.\",\"subtitle\":\"${CIRCLE_PROJECT_REPONAME}-${CIRCLE_BRANCH}\",\"imageUrl\":\"https://png.pngtree.com/svg/20170406/icon_failed__1325447.png\",\"imageStyle\":\"IMAGE\"},\"sections\":[{\"widgets\":[{\"keyValue\":{\"topLabel\":\"${CIRCLE_TAG}\",\"content\":\"Credits - ${CIRCLE_USERNAME}\"}}]},{\"widgets\":[{\"buttons\":[{\"textButton\":{\"text\":\"DETAILS\",\"onClick\":{\"openLink\":{\"url\":\"${CIRCLE_BUILD_URL}\"}}}}]}]}]}]}" \
"$CHAT_WEBHOOK_URL"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment