From e702317127ff3fb445ea161c45cee8a1c7a6b3d2 Mon Sep 17 00:00:00 2001 From: Edoardo Tenani Date: Thu, 16 Jun 2022 10:35:09 +0200 Subject: [PATCH] ci: suppress release stage notifications --- .ci/Jenkinsfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index d1fac8c..f5db1d9 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -88,14 +88,14 @@ pipeline { } } } - post { - failure { - notifyStatus(slackStatus: 'danger', subject: "[${env.REPO}] Release *${env.TAG_NAME}* failed", body: "Build: (<${env.RUN_DISPLAY_URL}|here>)") - } - success { - notifyStatus(slackStatus: 'good', subject: "[${env.REPO}] Release *${env.TAG_NAME}* published", body: "Build: (<${env.RUN_DISPLAY_URL}|here>)\nRepo URL: ${env.REPO_URL?.trim()}") - } - } + // post { + // failure { + // notifyStatus(slackStatus: 'danger', subject: "[${env.REPO}] Release *${env.TAG_NAME}* failed", body: "Build: (<${env.RUN_DISPLAY_URL}|here>)") + // } + // success { + // notifyStatus(slackStatus: 'good', subject: "[${env.REPO}] Release *${env.TAG_NAME}* published", body: "Build: (<${env.RUN_DISPLAY_URL}|here>)\nRepo URL: ${env.REPO_URL?.trim()}") + // } + // } } } post {