mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: Wes <wesbillman@users.noreply.github.com> Co-authored-by: Brain <21994759fc7a6fa6b965551d35cfd7897d262f2495467f2d78694ddcfa6a5c7e@sprout-oss.stage.blox.sqprod.co>
35 lines
994 B
Bash
Executable File
35 lines
994 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Pre-push guard: CI checks the PR merged with main, so local runs on a
|
|
# skewed branch can pass while CI fails. Block the push only when
|
|
# origin/main has changed files this branch also touches.
|
|
set -euo pipefail
|
|
|
|
branch=$(git rev-parse --abbrev-ref HEAD)
|
|
if [ "$branch" = "main" ] || [ "$branch" = "HEAD" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
git fetch --quiet origin main || true
|
|
git rev-parse --verify --quiet origin/main >/dev/null || exit 0
|
|
|
|
base=$(git merge-base HEAD origin/main)
|
|
if [ "$base" = "$(git rev-parse origin/main)" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
overlap=$(comm -12 \
|
|
<(git diff --name-only "$base" origin/main -- | sort) \
|
|
<(git diff --name-only "$base" HEAD -- | sort))
|
|
|
|
if [ -z "$overlap" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
{
|
|
echo "Branch is behind origin/main, and main changed files this branch also touches:"
|
|
echo "$overlap" | sed 's/^/ /'
|
|
echo "Local checks ran on a tree CI will never test. Run 'git merge origin/main',"
|
|
echo "resolve, re-run checks, then push."
|
|
} >&2
|
|
exit 1
|