featurer/vendor/github.com/cloudwego/base64x/check_branch_name.sh
Stanislav N. aka pztrn c49251db31
All checks were successful
Linting and tests / Tests (push) Successful in 1m27s
Linting and tests / Linting (push) Successful in 1m34s
Add vendor to improve building speed.
This also adds ability to be built in network-constrained environment.
2024-10-12 23:08:41 +05:00

11 lines
413 B
Bash

#!/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