We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb82a84 commit 176f66bCopy full SHA for 176f66b
1 file changed
scripts/create-release-tag.sh
@@ -4,6 +4,8 @@ set -euo pipefail
4
5
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
6
TAG_PREFIX="userauth"
7
+YELLOW=$'\033[33m'
8
+RESET=$'\033[0m'
9
10
if ! command -v git >/dev/null 2>&1; then
11
echo "Error: git is required but was not found in PATH" >&2
@@ -37,7 +39,7 @@ fi
37
39
echo "Release tag preview:"
38
40
echo " Tag scheme: ${TAG_PREFIX}-<shortsha>-<release_number>"
41
echo " Release number: $NEXT_RELEASE_NUM"
-echo " Tag: $TAG_NAME"
42
+echo " Tag: ${YELLOW}${TAG_NAME}${RESET}"
43
echo " Branch: $CURRENT_BRANCH"
44
echo " Commit: $COMMIT_SHA"
45
echo
0 commit comments