You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/08/17 02:59:50 UTC

[skywalking-banyandb] 01/01: Only run the `result` job after all needed jobs succeeded

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

kezhenxu94 pushed a commit to branch kezhenxu94-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git

commit 7b7d7639e1fa90a8262be531a8b19429e0466b9e
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Tue Aug 17 10:59:46 2021 +0800

    Only run the `result` job after all needed jobs succeeded
---
 .github/workflows/go.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 097658f..1efa5c3 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -76,6 +76,7 @@ jobs:
       - name: Test
         run: make test
   result:
+    if: ${{ success() }}
     name: Continuous Integration
     runs-on: ubuntu-20.04
     needs: [check, build, test]