From c5783bd053f5cb097d9669b222e3d53487d723f2 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 4 Jun 2025 19:18:32 +0200 Subject: [PATCH] chore(ci): log commits --- .gitea/scripts/add-annotations.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/scripts/add-annotations.sh b/.gitea/scripts/add-annotations.sh index 1fed855..c25f51a 100755 --- a/.gitea/scripts/add-annotations.sh +++ b/.gitea/scripts/add-annotations.sh @@ -79,7 +79,9 @@ function map_type_to_kind() { esac } -COMMIT_TITLES=$(git log "${OLD_TAG}..${NEW_TAG}" --pretty=format:"%s") +git log --pretty=format:"%s" "${OLD_TAG}..${NEW_TAG}" + +COMMIT_TITLES="$(git log --pretty=format:"%s" "${OLD_TAG}..${NEW_TAG}")" echo "INFO: Generate change log entries from ${OLD_TAG} until ${NEW_TAG}"