diff options
-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 |