You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/07/22 14:27:42 UTC

[iotdb-client-go] branch rel/0.13 updated: active ci for rel branches (#42)

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

haonan pushed a commit to branch rel/0.13
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git


The following commit(s) were added to refs/heads/rel/0.13 by this push:
     new 6986015  active ci for rel branches (#42)
6986015 is described below

commit 6986015d09f64eb3dc08be5df7e4a7ba411af72b
Author: Haonan <hh...@outlook.com>
AuthorDate: Fri Jul 22 19:11:04 2022 +0800

    active ci for rel branches (#42)
    
    * active ci for rel branches
    
    * Apply suggestions from code review
---
 .github/workflows/e2e.yml | 14 ++++++++++++--
 .github/workflows/go.yml  | 15 +++++++++++++--
 2 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index b1c1f3c..47e8d28 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -2,9 +2,19 @@ name: E2E Tests
 
 on:
   push:
-    branches: [ main ]
+    branches:
+      - main
+      - 'rel/*'
   pull_request:
-    branches: [ main ]
+    branches:
+      - main
+      - 'rel/*'
+  # allow manually run the action:
+  workflow_dispatch:
+
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
 
 jobs:
 
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 90046ed..f876414 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -2,9 +2,20 @@ name: Go
 
 on:
   push:
-    branches: [ main ]
+    branches:
+      - main
+      - 'rel/*'
   pull_request:
-    branches: [ main ]
+    branches:
+      - main
+      - 'rel/*'
+  # allow manually run the action:
+  workflow_dispatch:
+
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 
 jobs: