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:49 UTC

[skywalking-banyandb] branch kezhenxu94-patch-1 created (now 7b7d763)

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

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


      at 7b7d763  Only run the `result` job after all needed jobs succeeded

This branch includes the following new commits:

     new 7b7d763  Only run the `result` job after all needed jobs succeeded

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


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

Posted by ke...@apache.org.
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]