From 74b5d9b48cb1e2f7c45bdd9cef7455b98b2147a5 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 15 Jun 2021 18:28:12 +0200 Subject: [PATCH] matrix-notifier: use full URL to Drone build --- matrix-notifier | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix-notifier b/matrix-notifier index b92fb3e..e9b7f1b 100755 --- a/matrix-notifier +++ b/matrix-notifier @@ -37,7 +37,7 @@ rawurlencode() { default_drone_message() { local msg="Build ${DRONE_BUILD_STATUS}" - msg="$msg ${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/${DRONE_BUILD_NUMBER}" + msg="$msg ${DRONE_SYSTEM_PROTO}://${DRONE_SYSTEM_HOST}/${DRONE_REPO}/${DRONE_BUILD_NUMBER}" msg="$msg (${DRONE_BRANCH})" printf '%s' "$msg" }