This is an automated email from the ASF dual-hosted git repository.

zhongjiajie pushed a commit to branch main
in repository 
https://gitbox.apache.org/repos/asf/dolphinscheduler-sdk-python.git


The following commit(s) were added to refs/heads/main by this push:
     new b0967c6  CI: Enable deadlink check (#172)
b0967c6 is described below

commit b0967c6007e2b3771dcb0b13ba8cbf95f749eff0
Author: Jay Chung <[email protected]>
AuthorDate: Tue Jan 20 16:36:10 2026 +0800

    CI: Enable deadlink check (#172)
---
 .github/workflows/ci.yaml | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 4978a7a..d96734a 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -40,17 +40,17 @@ jobs:
     runs-on: ubuntu-latest
     steps:
         - uses: apache/skywalking-eyes/header@main
-#  dead-link:
-#    runs-on: ubuntu-latest
-#    needs: license
-#    timeout-minutes: 30
-#    steps:
-#      - uses: actions/checkout@v3
-#      - run: sudo npm install -g [email protected]
-#      - run: |
-#          for file in $(find . -name "*.md"); do
-#            markdown-link-check -c .dlc.json -q "$file"
-#          done
+  dead-link:
+    runs-on: ubuntu-latest
+    needs: license
+    timeout-minutes: 30
+    steps:
+      - uses: actions/checkout@v3
+      - run: sudo npm install -g [email protected]
+      - run: |
+          for file in $(find . -name "*.md"); do
+            markdown-link-check -c .dlc.json -q "$file"
+          done
   lint:
     timeout-minutes: 15
     runs-on: ubuntu-latest
@@ -212,15 +212,15 @@ jobs:
     name: CI
     if: always()
     needs:
-#      - dead-link
+      - dead-link
       - local-ci
       - integrate-test
     runs-on: ubuntu-latest
     steps:
       - name: Status
-#          if [[ ${{ needs.dead-link.result }} != 'success' ]] || \
         run: |
-          if [[ ${{ needs.local-ci.result }} != 'success' ]] || \
+          if [[ ${{ needs.dead-link.result }} != 'success' ]] || \
+            [[ ${{ needs.local-ci.result }} != 'success' ]] || \
             ([[ ${{ needs.integrate-test.result }} != 'skipped' ]] && [[ ${{ 
needs.integrate-test.result }} != 'success' ]]); then
             echo "CI Failed!"
             exit -1

Reply via email to