From 46ab678bf715c77b28079d86330cd3f5ceb7a4d2 Mon Sep 17 00:00:00 2001 From: Zeke Foppa Date: Mon, 24 Nov 2025 09:14:55 -0800 Subject: [PATCH 1/3] [bfops/ci-fix-doc-check]: CI - Fix diff checks --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62979a62b0f..39dc5c3f573 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -512,7 +512,7 @@ jobs: cargo run --features markdown-docs -p spacetimedb-cli > docs/docs/cli-reference.md pnpm format git status - if git diff --exit-code HEAD; then + if git diff --exit-code HEAD -- docs/docs/cli-reference.md; then echo "No docs changes detected" else echo "It looks like the CLI docs have changed:" From 3688f38e19df2272f802c3a2b9889fdb5b1e164e Mon Sep 17 00:00:00 2001 From: Zeke Foppa Date: Mon, 24 Nov 2025 09:15:58 -0800 Subject: [PATCH 2/3] [bfops/ci-fix-doc-check]: [TEST] see if CI complains about Cargo.lock --- crates/cli/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 5f93a58a9d2..9d3e1a43933 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -83,6 +83,7 @@ xmltree.workspace = true quick-xml.workspace = true names.workspace = true notify.workspace = true +serde_yaml = "0.9.34" [dev-dependencies] pretty_assertions.workspace = true From 0f21a9b2a2a04d190711f1372878df6fe7461b11 Mon Sep 17 00:00:00 2001 From: Zeke Foppa Date: Mon, 24 Nov 2025 09:26:09 -0800 Subject: [PATCH 3/3] [bfops/ci-fix-doc-check]: Revert "[bfops/ci-fix-doc-check]: [TEST] see if CI complains about Cargo.lock" This reverts commit 3688f38e19df2272f802c3a2b9889fdb5b1e164e. --- crates/cli/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 9d3e1a43933..5f93a58a9d2 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -83,7 +83,6 @@ xmltree.workspace = true quick-xml.workspace = true names.workspace = true notify.workspace = true -serde_yaml = "0.9.34" [dev-dependencies] pretty_assertions.workspace = true