summaryrefslogtreecommitdiff
path: root/utils/ci/run_commitlint.sh
blob: b752956d8feb8ad678d858c2e8a00301253e520c (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash
set -eo pipefail

REPO_DIR="$(git rev-parse --show-toplevel)"
HELP_URL="https://github.com/LunarVim/LunarVim/blob/rolling/CONTRIBUTING.md#commit-messages"
CONFIG="$REPO_DIR/.github/workflows/commitlint.config.js"

if ! npx commitlint --edit --verbose --help-url "$HELP_URL" --config "$CONFIG"; then
  exit 1
fi