From 725c68b777db34cb2d81aa0468ac5be38fe4567a Mon Sep 17 00:00:00 2001 From: Aleksandr Chebotov Date: Mon, 22 Mar 2021 13:44:19 +0300 Subject: [PATCH] fix message --- get-new-tool-versions/send-slack-notification.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-new-tool-versions/send-slack-notification.ps1 b/get-new-tool-versions/send-slack-notification.ps1 index 050af3e..5b5aebb 100644 --- a/get-new-tool-versions/send-slack-notification.ps1 +++ b/get-new-tool-versions/send-slack-notification.ps1 @@ -35,7 +35,7 @@ param( Import-Module $PSScriptRoot/helpers.psm1 -DisableNameChecking # Create JSON body -$text = "The following versions of '$toolName' are available to upload: $toolVersion" +$text = "The following versions of '$toolName' are available, consider adding them to toolset: $toolVersion" if (-not ([string]::IsNullOrWhiteSpace($PipelineUrl))) { $text += "\nLink to the pipeline: $pipelineUrl" }