From 9587b7cc5d2ca2ebb2dbde284345c2af11be7410 Mon Sep 17 00:00:00 2001 From: Gu Date: Thu, 27 Nov 2025 09:30:58 -0800 Subject: [PATCH] fix: update workflow paths to use zh/ja instead of cn/jp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aligns workflow trigger paths with the zh/ja language directory rename. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/sync_docs_analyze.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/sync_docs_analyze.yml b/.github/workflows/sync_docs_analyze.yml index 1bec5e70..27a06bc1 100644 --- a/.github/workflows/sync_docs_analyze.yml +++ b/.github/workflows/sync_docs_analyze.yml @@ -6,18 +6,18 @@ on: types: [opened, synchronize, reopened] paths: # IMPORTANT: These paths should match the language directories defined in tools/translate/config.json - # Currently configured for: en (source), cn, jp (targets) + # Currently configured for: en (source), zh, ja (targets) # If you add/remove languages in config.json, update these paths accordingly - 'docs.json' - 'en/**/*.md' - 'en/**/*.mdx' - 'en/**/openapi*.json' - - 'cn/**/*.md' - - 'cn/**/*.mdx' - - 'cn/**/openapi*.json' - - 'jp/**/*.md' - - 'jp/**/*.mdx' - - 'jp/**/openapi*.json' + - 'zh/**/*.md' + - 'zh/**/*.mdx' + - 'zh/**/openapi*.json' + - 'ja/**/*.md' + - 'ja/**/*.mdx' + - 'ja/**/openapi*.json' - 'versions/**/*.md' - 'versions/**/*.mdx'