From 4c04572783fa4bd5b6e339640bcb511a1a4fe105 Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Wed, 6 May 2026 16:49:11 +0500 Subject: [PATCH] nix(chore): add commit prefix in release commit message We should follow our commit convention. Signed-off-by: Taimoor Zaeem --- nix/tools/release.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/tools/release.nix b/nix/tools/release.nix index 7f0fa8209..34fef40ab 100644 --- a/nix/tools/release.nix +++ b/nix/tools/release.nix @@ -62,7 +62,7 @@ let git add CHANGELOG.md > /dev/null 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 bump devel @@ -74,7 +74,7 @@ let git branch "v$A" 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 trap "echo Remote not found. Please push manually ..." ERR