This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new 7d942ce9a52 [fix] limit check-md-links to only 'next' docs (#3611)
7d942ce9a52 is described below
commit 7d942ce9a52bce750d930e4cd94108c7c5b72664
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Tue May 5 16:49:04 2026 -0700
[fix] limit check-md-links to only 'next' docs (#3611)
---
.github/workflows/check-md-links.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/check-md-links.yml
b/.github/workflows/check-md-links.yml
index fc7a3668c7b..4d409798a70 100644
--- a/.github/workflows/check-md-links.yml
+++ b/.github/workflows/check-md-links.yml
@@ -28,7 +28,9 @@ jobs:
echo 'files<<EOF'
git diff --name-only --diff-filter=AM \
"${{ github.event.pull_request.base.sha }}...HEAD" \
- -- '*.md' '*.mdx'
+ -- 'docs-next/**/*.md' 'docs-next/**/*.mdx' \
+ 'i18n/zh-CN/docusaurus-plugin-content-docs-next/**/*.md' \
+ 'i18n/zh-CN/docusaurus-plugin-content-docs-next/**/*.mdx'
echo EOF
} >> "$GITHUB_OUTPUT"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]