From 87a18cdeb3e4067f1415c8752697f6e77d426509 Mon Sep 17 00:00:00 2001 From: Milos Nikic Date: Wed, 14 Feb 2024 10:41:36 +0100 Subject: [PATCH] Correct readme file example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f6058bd..02fc6d2 100644 --- a/README.md +++ b/README.md @@ -70,5 +70,5 @@ Discord Notifier supports Jenkins Pipeline. The only required parameter is webho ### Example ```groovy -discordSend description: "Jenkins Pipeline Build", footer: "Footer Text", link: env.BUILD_URL, result: currentBuild.currentResult, title: JOB_NAME, webhookURL: "Webhook URL" +discordSend description: "Jenkins Pipeline Build", footer: "Footer Text", link: env.BUILD_URL, result: currentBuild.currentResult, title: env.JOB_NAME, webhookURL: "Webhook URL" ```