From 80472ad9c1147ef062b17ad3f50c99af32e2775e Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Thu, 25 Jun 2026 10:57:40 +0530 Subject: [PATCH] refactor(boundaries): rename check-consumer-boundaries to check-ecosystem-boundaries - Renamed script to match ecosystem-wide naming convention - Updated CI workflow and Makefile references --- .github/workflows/ci.yml | 4 ++-- Makefile | 2 +- ...k-consumer-boundaries.sh => check-ecosystem-boundaries.sh} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename scripts/{check-consumer-boundaries.sh => check-ecosystem-boundaries.sh} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f63292..61021cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,8 +58,8 @@ jobs: fi - name: go vet run: go vet ./... - - name: consumer boundary guard - run: bash ./scripts/check-consumer-boundaries.sh + - name: ecosystem boundary guard + run: bash ./scripts/check-ecosystem-boundaries.sh # ------------------------------------------------------------------------- # Lint — golangci-lint covers most static checks. diff --git a/Makefile b/Makefile index 8df768b..2fc565c 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ vet: ## Run go vet. go vet ./... boundary-guard: ## Fail if the SDK imports support engines or Hawk private packages. - bash ./scripts/check-consumer-boundaries.sh + bash ./scripts/check-ecosystem-boundaries.sh lint: ## Run golangci-lint. @command -v $(GOLANGCI) >/dev/null 2>&1 || (echo "install: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest" && exit 1) diff --git a/scripts/check-consumer-boundaries.sh b/scripts/check-ecosystem-boundaries.sh similarity index 100% rename from scripts/check-consumer-boundaries.sh rename to scripts/check-ecosystem-boundaries.sh