nix(chore): add commit prefix in release commit message

We should follow our commit convention.

Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com>
This commit is contained in:
Taimoor Zaeem
2026-05-06 23:26:06 +05:00
parent 6b3ec5d9e0
commit 4c04572783
+2 -2
View File
@@ -62,7 +62,7 @@ let
git add CHANGELOG.md > /dev/null git add CHANGELOG.md > /dev/null
echo "Committing ..." echo "Committing ..."
git commit -m "bump version to $new_version" > /dev/null git commit -m "chore: bump version to $new_version" > /dev/null
if [[ "$current_branch" == "main" ]]; then if [[ "$current_branch" == "main" ]]; then
bump devel bump devel
@@ -74,7 +74,7 @@ let
git branch "v$A" git branch "v$A"
echo "Committing (devel bump)..." echo "Committing (devel bump)..."
git commit -m "bump version to $new_version" > /dev/null git commit -m "chore: bump version to $new_version" > /dev/null
fi fi
trap "echo Remote not found. Please push manually ..." ERR trap "echo Remote not found. Please push manually ..." ERR