From 8d4543f2cd35d2240b0503f5e723e8534a185559 Mon Sep 17 00:00:00 2001 From: fullsend-code <278716306+fullsend-ai-coder[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 13:41:33 +0000 Subject: [PATCH] docs(#1782): fix make ci description in AGENTS.md Update the make ci comment to match the actual Makefile ci target prerequisites. Three inaccuracies corrected: (1) test -> quiet-test, (2) added missing regal-test, (3) reordered to match actual Makefile target order. Closes #1782 --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index a433b40d1..9b230b51b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -11,7 +11,7 @@ make TEST="pattern" test # Run tests matching regex make coverage # Show uncovered lines make fmt # Format rego (run before every commit) make lint # Regal linter + license headers -make ci # Full CI: test + acceptance + fmt-check + lint + opa-check + conventions-check + generate-docs +make ci # Full CI: quiet-test + acceptance + opa-check + conventions-check + fmt-check + lint + regal-test + generate-docs make generate-docs # Regenerate Antora docs from annotations (commit changed files) ```