From 0e90f762d39873d557e4ebe839154dd99496c0d3 Mon Sep 17 00:00:00 2001 From: Marcus Hert Da Coregio Date: Fri, 7 Jun 2024 10:21:27 -0300 Subject: [PATCH] Add pre-push hook Issue gh-15028 --- git/hooks/pre-push | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 git/hooks/pre-push diff --git a/git/hooks/pre-push b/git/hooks/pre-push new file mode 100755 index 0000000000..44eebcbd0a --- /dev/null +++ b/git/hooks/pre-push @@ -0,0 +1,27 @@ +#!/bin/bash +# .git/hooks/pre-push + +echo "Verifying if the target branch matches the version in gradle.properties" + +# Get the current branch name +branch_name=$(git symbolic-ref --short HEAD) + +# Verify if branch name ends with '.x' +if [[ ! "$branch_name" =~ \.x$ ]]; then + echo "Branch name '$branch_name' does not end with '.x', skipping verification." + exit 0 +fi + +# Extract version from gradle.properties +version=$(cat gradle.properties | grep 'version=' | awk -F'=' '{print $2}') + +# Extract the version prefix from the version +version_prefix=$(echo $version | cut -d'-' -f1 | sed 's/\.[0-9]*$//') + +# Check if branch starts with the version prefix +if [[ "$branch_name" != "$version_prefix"* ]]; then + echo "Branch name '$branch_name' does not match the version prefix '$version_prefix' in gradle.properties. Make sure you are pushing to the right branch." + exit 1 +fi + +exit 0