From f8919c0509f6037bae4c898016607e1d98905ec2 Mon Sep 17 00:00:00 2001 From: xiangzihao <460888207@qq.com> Date: Mon, 4 Mar 2024 15:16:11 +0800 Subject: [PATCH 1/2] [Doc] Fix ci docs check timeout issue (#15664) * fix docs check timeout issue * fix docs check timeout issue * fix docs check timeout issue * fix docs check timeout issue * fix docs check timeout issue * fix docs check timeout issue * fix docs check timeout issue * fix docs check timeout issue * fix docs check timeout issue --- .github/workflows/docs.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 09fba9c6ce90..591bb0a65bb1 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -55,13 +55,15 @@ jobs: timeout-minutes: 30 steps: - uses: actions/checkout@v2 - - run: sudo npm install -g markdown-link-check@3.10.0 + - run: sudo npm install -g markdown-link-check@3.11.2 + - run: sudo apt install plocate -y # NOTE: Change command from `find . -name "*.md"` to `find . -not -path "*/node_modules/*" -not -path "*/.tox/*" -name "*.md"` # if you want to run check locally - run: | - for file in $(find . -name "*.md" -not \( -path ./deploy/terraform/aws/README.md -prune \)); do - markdown-link-check -c .dlc.json -q "$file" + for file in $(locate "$PWD*/*.md" | grep -v ./deploy/terraform/aws/README.md); do + markdown-link-check -c .dlc.json -q "$file" & done + wait paths-filter: name: Helm-Doc-Path-Filter runs-on: ubuntu-latest From 48ea8f387a3a008541d0b2c069e1fab793e3f682 Mon Sep 17 00:00:00 2001 From: Jay Chung Date: Mon, 4 Mar 2024 15:43:32 +0800 Subject: [PATCH 2/2] chore: modify some CODEOWNERS (#15654) * chore: modify some CODEOWNERS * Add Eric as code owner for some dirs --------- Co-authored-by: xiangzihao <460888207@qq.com> --- .github/CODEOWNERS | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index b82253d7aa9a..e4d5c7dc75fe 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -23,7 +23,7 @@ /dolphinscheduler-registry/ @caishunfeng @ruanwenjun /dolphinscheduler-api/ @caishunfeng @SbloodyS /dolphinscheduler-dao/ @caishunfeng @SbloodyS -/dolphinscheduler-dao/src/main/resources/sql/ @zhongjiajie +/dolphinscheduler-dao/src/main/resources/sql/ @EricGao888 /dolphinscheduler-common/ @caishunfeng /dolphinscheduler-standalone-server/ @caishunfeng /dolphinscheduler-datasource-plugin/ @caishunfeng @@ -36,10 +36,10 @@ /dolphinscheduler-extract/ @caishunfeng @ruanwenjun /dolphinscheduler-spi/ @caishunfeng /dolphinscheduler-task-plugin/ @caishunfeng @SbloodyS @zhuangchong -/dolphinscheduler-tools/ @caishunfeng @SbloodyS @zhongjiajie @EricGao888 -/script/ @caishunfeng @SbloodyS @zhongjiajie @EricGao888 +/dolphinscheduler-tools/ @caishunfeng @SbloodyS @EricGao888 +/script/ @caishunfeng @SbloodyS @EricGao888 /dolphinscheduler-ui/ @songjianet @Amy0104 -/docs/ @zhongjiajie @EricGao888 -/licenses/ @zhongjiajie -/images/ @zhongjiajie @EricGao888 +/docs/ @EricGao888 +/licenses/ @EricGao888 +/images/ @EricGao888 /style/ @caishunfeng