This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch rc/1.1
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/rc/1.1 by this push:
new 9d4a430b ci: Adding a CI for rc branching
9d4a430b is described below
commit 9d4a430be803d869b917488dae9bff88724ba483
Author: yuyong <[email protected]>
AuthorDate: Mon Aug 12 15:37:25 2024 +0800
ci: Adding a CI for rc branching
---
.github/workflows/code-coverage.yml | 2 ++
.github/workflows/codeql.yml | 4 +++-
.github/workflows/unit-test.yml | 2 ++
3 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/code-coverage.yml
b/.github/workflows/code-coverage.yml
index 3240ee0d..69c278f6 100644
--- a/.github/workflows/code-coverage.yml
+++ b/.github/workflows/code-coverage.yml
@@ -3,11 +3,13 @@ on:
push:
branches:
- develop
+ - rc/*
paths-ignore:
- 'docs/**'
pull_request:
branches:
- develop
+ - rc/*
paths-ignore:
- 'docs/**'
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index d0d3fc9c..2ebf94cd 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -13,7 +13,9 @@ name: "CodeQL"
on:
push:
- branches: [ "develop" ]
+ branches:
+ - develop
+ - rc/*
paths-ignore:
- 'docs/**'
diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml
index 93e95a80..ec0e7782 100644
--- a/.github/workflows/unit-test.yml
+++ b/.github/workflows/unit-test.yml
@@ -8,12 +8,14 @@ on:
branches:
- develop
- iotdb
+ - rc/*
paths-ignore:
- 'docs/**'
pull_request:
branches:
- develop
- iotdb
+ - rc/*
paths-ignore:
- 'docs/**'
# Enable manually starting builds, and allow forcing updating of SNAPSHOT
dependencies.