From bd48e85155dc2e4b028e40b3dba1e890bc6281e7 Mon Sep 17 00:00:00 2001 From: "Dave (translate via Sonnet 4.6)" Date: Thu, 18 Jun 2026 00:09:46 -0600 Subject: [PATCH] wip: skip unchanged locale planning --- .github/workflows/deploy-docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index fdf6fd26..2f8432e2 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -112,6 +112,8 @@ jobs: # ── Locale chunk planning ──────────────────────────────────────────────────── plan-locale-chunks: needs: check-changes + # Always build on push/manual; skip scheduled runs when nothing changed. + if: needs.check-changes.outputs.changed == 'true' || github.event_name != 'schedule' runs-on: ubuntu-latest outputs: chunks: ${{ steps.plan.outputs.chunks }}