From 60cbc2ca4f9951b0891fff97817848af1fe36dc6 Mon Sep 17 00:00:00 2001 From: Chris Beer Date: Wed, 7 Jul 2021 09:33:18 -0700 Subject: [PATCH] Tag the deploy slack message --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e937e3ca..bd06d032 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,13 +36,13 @@ pipeline { post { success { sh '''#!/bin/bash -l - curl -X POST -H 'Content-type: application/json' --data '{"text":"The deploy to prod was successful"}' $SLACK_WEBHOOK_URL + curl -X POST -H 'Content-type: application/json' --data '{"text":"[ivplus/aggregator] The deploy to prod was successful"}' $SLACK_WEBHOOK_URL ''' } failure { sh '''#!/bin/bash -l - curl -X POST -H 'Content-type: application/json' --data '{"text":"The deploy to prod was unsuccessful"}' $SLACK_WEBHOOK_URL + curl -X POST -H 'Content-type: application/json' --data '{"text":"[ivplus/aggregator] The deploy to prod was unsuccessful"}' $SLACK_WEBHOOK_URL ''' } }