diff options
author | Jason Wray <jason@mapbox.com> | 2018-09-17 12:43:40 -0700 |
---|---|---|
committer | Jason Wray <jason@mapbox.com> | 2018-09-17 13:12:14 -0700 |
commit | 153e97c8e7cd03cdd0e94cb5e17a2723f417d973 (patch) | |
tree | c6501e7f6ae52873e8f9c91dd891c37c367d094d /circle.yml | |
parent | 12809db596ae888a36d1af465bbd65362ac37d4d (diff) | |
download | qtlocation-mapboxgl-153e97c8e7cd03cdd0e94cb5e17a2723f417d973.tar.gz |
[ios, build] Remove broken link from deploy Slack notification
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/circle.yml b/circle.yml index 48ed16b2cc..a7fa95c2a6 100644 --- a/circle.yml +++ b/circle.yml @@ -1087,7 +1087,7 @@ jobs: - run: name: Send a Slack notification on start command: | - export SLACK_MESSAGE="Release build for <$CIRCLE_COMPARE_URL|\`$CIRCLE_TAG\`> <$CIRCLE_BUILD_URL|started>." + export SLACK_MESSAGE="<$CIRCLE_BUILD_URL|Release build for \`$CIRCLE_TAG\` started.>" scripts/notify-slack.sh - *restore-node_modules-cache - *npm-install @@ -1114,14 +1114,14 @@ jobs: name: Send a Slack notification on failure when: on_fail command: | - export SLACK_MESSAGE="Release build for <$CIRCLE_COMPARE_URL|\`$CIRCLE_TAG\`> <$CIRCLE_BUILD_URL|failed>." + export SLACK_MESSAGE="<$CIRCLE_BUILD_URL|Release build for \`$CIRCLE_TAG\` failed.>" export SLACK_COLOR="danger" scripts/notify-slack.sh - run: name: Send a Slack notification on success when: on_success command: | - export SLACK_MESSAGE="Release build for <$CIRCLE_COMPARE_URL|\`$CIRCLE_TAG\`> <$CIRCLE_BUILD_URL|succeeded>." + export SLACK_MESSAGE="<$CIRCLE_BUILD_URL|Release build for \`$CIRCLE_TAG\` succeeded.>" export SLACK_COLOR="good" scripts/notify-slack.sh |