@tamara-solution/checkout
Version:
Script will be embedded in merchant's site to checkout. The merchant's don't need to redirect to tamara's site.
13 lines (11 loc) • 323 B
YAML
notify:failure:
stage: notify
script:
- curl -X POST --silent --data-urlencode "${FAILED_SLACK_MSG}" ${SLACK_NOTIFICATION_URL}
when: on_failure
tags: [shell]
notify:success:
stage: notify
script:
- curl -X POST --silent --data-urlencode "${SUCCESS_SLACK_MSG}" ${SLACK_NOTIFICATION_URL}
tags: [shell]