#!/usr/bin/env bash# Requires branch names to be correctly formatted.## - `main`# - `master`# - `<feature|bug|patch>/<project code>-<ticket number>-<description>`BRANCH_NAME=$(git symbolic-ref --short HEAD 2> /dev/null)if[[$BRANCH_NAME=~ ^main$ ]];thenexit0fiif[[$BRANCH_NAME=~ ^(feature|bug|patch)\/(([A-z]|[0-9]){0,4}-){2}([A-z0-9-]{1,50})$ ]];thenexit0fiif[[$BRANCH_NAME=~ ^master$ ]];thenexit0fiecho"Did not match brnach naming rules set for the project"exit1
Quick Setup
Assumes node and script location scripts/check-branch-name.sh