From 2b5f2a0db8b203fba6a3961aa24430e0420cd087 Mon Sep 17 00:00:00 2001 From: waleed Date: Tue, 14 Oct 2025 18:51:57 -0700 Subject: [PATCH 1/3] fix(i18n): exclude SDK files from automatic translation to prevent corruption --- apps/docs/i18n.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/docs/i18n.json b/apps/docs/i18n.json index 771a5158cf2..aaa3ddc3ad1 100644 --- a/apps/docs/i18n.json +++ b/apps/docs/i18n.json @@ -11,7 +11,8 @@ "content/docs/[locale]/*.mdx", "content/docs/[locale]/*/*.mdx", "content/docs/[locale]/*/*/*.mdx" - ] + ], + "exclude": ["content/docs/[locale]/sdks/*.mdx"] } } } From e49f07329541bec36378f2dc6659b057eb41de05 Mon Sep 17 00:00:00 2001 From: waleed Date: Tue, 14 Oct 2025 19:08:32 -0700 Subject: [PATCH 2/3] fix(i18n): temporarily disable auto-translate action while fixing translation corruption --- .github/workflows/i18n.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index cad647e3df3..28f550670d5 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -1,12 +1,14 @@ name: 'Auto-translate Documentation' +# Temporarily disabled - fixing translation corruption issues +# Re-enable after i18n pipeline is fully stabilized on: - push: - branches: [ staging ] - paths: - - 'apps/docs/content/docs/en/**' - - 'apps/docs/i18n.json' - workflow_dispatch: # Allow manual triggers + workflow_dispatch: # Allow manual triggers only + # push: + # branches: [ staging ] + # paths: + # - 'apps/docs/content/docs/en/**' + # - 'apps/docs/i18n.json' permissions: contents: write From 559ba4ca0d9594a7710e830fef5c5a63a561eac8 Mon Sep 17 00:00:00 2001 From: waleed Date: Tue, 14 Oct 2025 19:08:54 -0700 Subject: [PATCH 3/3] disable i18n action --- .github/workflows/i18n.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index 28f550670d5..1096bbaf5a6 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -1,7 +1,6 @@ name: 'Auto-translate Documentation' -# Temporarily disabled - fixing translation corruption issues -# Re-enable after i18n pipeline is fully stabilized +# Temporarily disabled on: workflow_dispatch: # Allow manual triggers only # push: