matrix-notifier: add default Drone message

This commit is contained in:
Bruno BELANYI 2021-06-12 18:22:04 +02:00
parent 8ae3594c68
commit ca3b5a053c
1 changed files with 11 additions and 0 deletions

View File

@ -23,6 +23,17 @@ rawurlencode() {
echo "$encoded")
}
default_drone_message() {
local msg="Build ${DRONE_BUILD_STATUS}"
msg="$msg ${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/${DRONE_BUILD_NUMBER}"
msg="$msg (${DRONE_BRANCH})"
printf '%s' "$msg"
}
if [ "$DRONE" == "true" ] && [ -z "$MESSAGE" ]; then
MESSAGE="$(default_drone_message)"
fi
if [ -z "$USER" ] || [ -z "$PASS" ]; then
print_err "You must provide USER and PASS"
exit 1