From 5a5eda4b098bff6d3281531a272dd8c9205bd4a6 Mon Sep 17 00:00:00 2001 From: Joseph Robinson Date: Sat, 16 May 2020 14:09:08 -0700 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9d47be2bb..38bcad1a5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,11 +28,11 @@ git submodule update --init --recursive''' stage('Report') { steps { discordSend( - description: '```\n' + getChanges(currentBuild) + '\n```', - footer: "Footer Text", + description: "**Build:** [${currentBuild.id}](${env.BUILD_URL})\n**Status:** [${currentBuild.currentResult}](${env.BUILD_URL})", + footer: "**JosephWorks Jenkins Server**", link: env.BUILD_URL, result: currentBuild.currentResult, - title: JOB_NAME, + title: "${env.JOB_NAME} #${currentBuild.id}", webhookURL: "$DISCORD_WEBHOOK_URL" ) }