From 113830711bb09b9b8c16728f32a0db532553ef16 Mon Sep 17 00:00:00 2001 From: Guangming Luo Date: Thu, 11 Jul 2024 15:30:11 +0800 Subject: [PATCH] chore: remove check_branch_name.sh --- check_branch_name.sh | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 check_branch_name.sh diff --git a/check_branch_name.sh b/check_branch_name.sh deleted file mode 100755 index 1876fc0..0000000 --- a/check_branch_name.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -current=$(git status | head -n1 | sed 's/On branch //') -name=${1:-$current} -if [[ ! $name =~ ^(((opt(imize)?|feat(ure)?|(bug|hot)?fix|test|refact(or)?|ci)/.+)|(main|develop)|(release-v[0-9]+\.[0-9]+)|(release/v[0-9]+\.[0-9]+\.[0-9]+(-[a-z0-9.]+(\+[a-z0-9.]+)?)?)|revert-[a-z0-9]+)$ ]]; then - echo "branch name '$name' is invalid" - exit 1 -else - echo "branch name '$name' is valid" -fi