From 9e1f8d3e081723359e833060b062cd1e050a6118 Mon Sep 17 00:00:00 2001 From: Steffen Gebert Date: Sun, 29 Jan 2017 19:39:31 +0100 Subject: [PATCH] [BUGFIX] Link to JOB_URL when waiting for input Makes no sense to link to the detail page. --- src/org/typo3/chefci/helpers/Slack.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/typo3/chefci/helpers/Slack.groovy b/src/org/typo3/chefci/helpers/Slack.groovy index 7f2d4aa..964e295 100644 --- a/src/org/typo3/chefci/helpers/Slack.groovy +++ b/src/org/typo3/chefci/helpers/Slack.groovy @@ -35,7 +35,7 @@ class Slack implements Serializable { def notifyVersionBump() { send( - message: "${script.env.JOB_NAME} build #${script.env.BUILD_NUMBER} *waiting for input*:\n${script.env.BUILD_URL}", + message: "${script.env.JOB_NAME} build #${script.env.BUILD_NUMBER} *waiting for input*:\n${script.env.JOB_URL}", color: 'warning', ) }