From 6e408235f239760407c78eb231c2c243ecbcbfe6 Mon Sep 17 00:00:00 2001 From: Kacper Magdziarz <95610011+kmagdziarz@users.noreply.github.com> Date: Fri, 19 May 2023 14:52:05 +0200 Subject: [PATCH] Change commit message to more meaningful. (#1939) --- scripts/ci/update_downstream.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/update_downstream.sh b/scripts/ci/update_downstream.sh index 53c9cac26a..a6a761bdec 100644 --- a/scripts/ci/update_downstream.sh +++ b/scripts/ci/update_downstream.sh @@ -35,10 +35,10 @@ git add pom.xml if [[ "${COMMIT_MESSAGE}" =~ \[force[^\]]*\] ]]; then FORCE_TOKEN=$(echo "${COMMIT_MESSAGE}" | sed "s|^.*\(\[force[^]]*\]\).*$|\1|g") - git commit --allow-empty -m "${FORCE_TOKEN} Update upstream version to ${VERSION}" + git commit --allow-empty -m "${FORCE_TOKEN} Update community-repo version to ${VERSION}" git push elif git status --untracked-files=no --porcelain | grep -q '^' ; then - git commit -m "Update upstream version to ${VERSION}" + git commit -m "Update community-repo version to ${VERSION}" git push else echo "Dependencies are already up to date."