mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
7 lines
244 B
Bash
Executable File
7 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Check if commit message starts with release or docs prefix
|
|
if [[ ! "$message" == "chore(release): version packages"* ]] && [[ ! "$message" == "docs"* ]]; then
|
|
echo "Skipping build: Not a release or docs commit."
|
|
exit 1
|
|
fi |