From b2131a67657159205b0bcb5c745c9077a5a08fb6 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Wed, 13 Aug 2025 18:08:38 -0400 Subject: [PATCH] Update `just` error message (#1483) --- .github/workflows/run-static.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-static.yml b/.github/workflows/run-static.yml index ff70d1a58..30451ba18 100644 --- a/.github/workflows/run-static.yml +++ b/.github/workflows/run-static.yml @@ -70,14 +70,14 @@ jobs: echo "Files that were updated:" git diff --name-only docs/python-sdk/ echo "" - echo "Run 'just api-ref-all' and commit the changes." + echo "Run `just api-ref-all` to regenerate the SDK docs, then commit the changes. Note: you may need to install `just` (https://github.com/casey/just)" exit 1 fi # Check if docs.json content changed (ignoring formatting) if ! jq --sort-keys . docs/docs.json.orig | diff -q - <(jq --sort-keys . docs/docs.json) > /dev/null 2>&1; then echo "❌ docs.json content has changed!" - echo "Run 'just api-ref-all' and commit the changes." + echo "Run `just api-ref-all` to regenerate the SDK docs, then commit the changes. Note: you may need to install `just` (https://github.com/casey/just)" exit 1 fi