This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git
The following commit(s) were added to refs/heads/main by this push:
new cd17da2 active ci for rel branches (#42)
cd17da2 is described below
commit cd17da295b46d3e187b65cde56c0ef19871e131e
Author: Haonan <[email protected]>
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: