From c66e679bdd6be5069d38e5ac1d6b245e053a6f3c Mon Sep 17 00:00:00 2001 From: Joseph Robinson Date: Sat, 16 May 2020 10:45:53 -0700 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 75182d901..b5016d115 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,8 @@ pipeline { agent any + environment { + DiscordWebhookURL= credentials('3e8105ad-8e03-4550-bc66-a27438ec6fb3') + } stages { stage('Initialize') { steps { @@ -23,7 +26,7 @@ git submodule update --init --recursive''' stage('Report') { steps { - discordSend 'https://discordapp.com/api/webhooks/695027453122445433/rijjbFyNPhgvTmgXHCCdMExGwR3vHBveH4PjYi0ScsP9d7rSdGbKMhId36WAypZjUj5h-rip' + discordSend $DiscordWebhookURL } }