From 0f60f36398a34f637eba18756b6b5a0539458916 Mon Sep 17 00:00:00 2001 From: Victor Lin <13424970+victorlin@users.noreply.github.com> Date: Tue, 9 Jul 2024 10:38:55 -0700 Subject: [PATCH] Add clarity to docs check error message Reference dev docs and cover all scenarios. --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 82ea46e28..92ba7fa4d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -226,6 +226,7 @@ jobs: if [[ -n $(git status --porcelain) ]]; then git add . git diff --staged >&2 - echo "There are changes to the developer API docs. Please regenerate, commit, and push the changes." >&2 + echo "There are changes that affect the developer API docs. Please update: " >&2 + echo "If there are changes to the Augur CLI, please manually adjust files under 'docs/usage/cli/'." >&2 exit 1 fi