From ba9fafc006a0071f0aa353ce73cbb55aeb8f5272 Mon Sep 17 00:00:00 2001 From: Andre Manoel Date: Thu, 9 Apr 2026 00:16:12 +0000 Subject: [PATCH] fix: narrow docs-preview workflow path filter The docs-preview workflow triggered on all source code changes due to the broad `packages/*/src/data_designer/**` path glob. This caused unnecessary Cloudflare Pages deployments on code-only PRs like #505. Remove the source code path filter so the workflow only triggers on actual docs content changes (docs/**, mkdocs.yml, and the workflow file itself). --- .github/workflows/docs-preview.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/docs-preview.yml b/.github/workflows/docs-preview.yml index 9f7bf113..d287349d 100644 --- a/.github/workflows/docs-preview.yml +++ b/.github/workflows/docs-preview.yml @@ -6,7 +6,6 @@ on: paths: - "docs/**" - "mkdocs.yml" - - "packages/*/src/data_designer/**" - ".github/workflows/docs-preview.yml" jobs: