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 <[email protected]> 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:
