From e5a7a1c29d6b3fbdeacfa5ef94b075a76bd98702 Mon Sep 17 00:00:00 2001 From: Oliver Sun <73540835+oliversun9@users.noreply.github.com> Date: Mon, 13 Nov 2023 11:59:33 -0500 Subject: [PATCH] Update slack message for release drafts (#2582) --- make/buf/scripts/draftrelease.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/buf/scripts/draftrelease.bash b/make/buf/scripts/draftrelease.bash index 8f5f6d30d6..bc8bbd7601 100755 --- a/make/buf/scripts/draftrelease.bash +++ b/make/buf/scripts/draftrelease.bash @@ -44,4 +44,4 @@ b loop # The second v${VERSION} is the tag, see https://cli.github.com/manual/gh_release_create url=$(gh release create --draft --notes "${release_notes}" --title "v${VERSION}" "v${VERSION}" .build/release/buf/assets/*) -jq --null-input "{text:\"BufCLI Release ${VERSION} is complete: ${url}\"}" | curl -sSL -X POST -H 'Content-Type: application/json' -d@- "${WEBHOOK_URL}" +jq --null-input "{text:\"BufCLI Release ${VERSION} has been drafted: ${url}\"}" | curl -sSL -X POST -H 'Content-Type: application/json' -d@- "${WEBHOOK_URL}"