From 2e3d4eace7febb0dee40988b4fcd9bb8595cb6fa Mon Sep 17 00:00:00 2001 From: Raphael Avocegamou Date: Thu, 3 Sep 2026 10:16:00 +0200 Subject: [PATCH] ci: require concrete queue limits in docs --- scripts/check-code-protocol.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-code-protocol.sh b/scripts/check-code-protocol.sh index a7ec55b..dac2310 100755 --- a/scripts/check-code-protocol.sh +++ b/scripts/check-code-protocol.sh @@ -5,7 +5,7 @@ repository_root=$(cd "$(dirname "$0")/.." && pwd) cd "$repository_root" if public_doc_vocabulary=$(rg -n -i \ - '\b(boundary|path|surface|authority|projection|lowering|flow|layer|contracts?)\b' \ + '\b(boundary|path|surface|authority|projection|lowering|flow|layer|bounded|contracts?)\b' \ README.md docs --glob '*.md' --glob '*.mdx' 2>/dev/null \ | rg -v '\]\(docs/contracts/' || true); [[ -n "$public_doc_vocabulary" ]]; then printf 'CODE_PROTOCOL: public documentation uses vague architecture shorthand:\n%s\n' "$public_doc_vocabulary" >&2