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

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


The following commit(s) were added to refs/heads/main by this push:
     new 9b05e27  fix: Error CI name (#2)
9b05e27 is described below

commit 9b05e27bf7232095b76d058c5c07ca869087a4b5
Author: Jay Chung <[email protected]>
AuthorDate: Wed Jan 18 13:31:34 2023 +0800

    fix: Error CI name (#2)
---
 .github/workflows/ci.yaml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 962bd9f..068e364 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -41,3 +41,16 @@ jobs:
           for file in $(find . -name "*.md"); do
             markdown-link-check -c .dlc.json -q "$file"
           done
+  result:
+    name: CI
+    runs-on: ubuntu-latest
+    needs: [license, dead-link]
+    if: always()
+    steps:
+      - name: Status
+        run: |
+          if [[ ${{ needs.license.result }} != 'success' || ${{ 
needs.dead-link.result }} != 'success' ]]; then
+            echo "Build Failed!"
+            exit -1
+          fi
+

Reply via email to