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 11:07:47 UTC

[iotdb-client-go] 01/01: active ci for rel branches

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

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

commit ba1901664929c11ac818c56afb937e629920e994
Author: HTHou <hh...@outlook.com>
AuthorDate: Fri Jul 22 19:07:35 2022 +0800

    active ci for rel branches
---
 .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..edafbef 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -2,9 +2,19 @@ name: E2E Tests
 
 on:
   push:
-    branches: [ main ]
+    branches:
+      - master
+      - 'rel/*'
   pull_request:
-    branches: [ main ]
+    branches:
+      - master
+      - '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..e21672a 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -2,9 +2,20 @@ name: Go
 
 on:
   push:
-    branches: [ main ]
+    branches:
+      - master
+      - 'rel/*'
   pull_request:
-    branches: [ main ]
+    branches:
+      - master
+      - 'rel/*'
+  # allow manually run the action:
+  workflow_dispatch:
+
+concurrency:
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 
 jobs: