From 137e478f3df1716ae801ea910a9b24a6a8d1088a Mon Sep 17 00:00:00 2001 From: Gornak40 Date: Mon, 21 Oct 2024 01:58:07 +0300 Subject: [PATCH] chore: add escape [ --- .github/workflows/semver.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/semver.yml b/.github/workflows/semver.yml index cbaec3d..6d59f15 100644 --- a/.github/workflows/semver.yml +++ b/.github/workflows/semver.yml @@ -16,8 +16,10 @@ jobs: run: | VERSION=$(./scripts/semver.sh) echo "Project version: $VERSION" - git config --global user.name "Gornak40[bot]" + + git config --global user.name "Gornak40\[bot\]" git config --global user.email "noreply@algolymp.ru" + MESSAGE=$(git log -1 --pretty=%B) echo "Tag message: $MESSAGE" git tag -a $VERSION -m $MESSAGE