#!/usr/bin/env bash
# SPDX-FileCopyrightText: 2026 Sandeep Bazar
# SPDX-License-Identifier: Apache-2.0
# Versioned pre-push hook: run the CI-identical checks before anything leaves
# this machine. Enable once per clone with:
#   git config core.hooksPath hack/githooks
# Bypass in an emergency with: git push --no-verify
set -euo pipefail
exec "$(git rev-parse --show-toplevel)/hack/ci-local.sh"
