You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celeborn.apache.org by ch...@apache.org on 2023/03/03 08:50:11 UTC

[incubator-celeborn] branch branch-0.2 updated: [CELEBORN-375][INFRA] Enable CI on branch-* (#1307)

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

chengpan pushed a commit to branch branch-0.2
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git


The following commit(s) were added to refs/heads/branch-0.2 by this push:
     new b997479c6 [CELEBORN-375][INFRA] Enable CI on branch-* (#1307)
b997479c6 is described below

commit b997479c66443bd3aaf794e8e81ce66fdf3d5145
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Fri Mar 3 16:49:32 2023 +0800

    [CELEBORN-375][INFRA] Enable CI on branch-* (#1307)
---
 .github/workflows/maven.yml | 8 ++++++--
 .github/workflows/style.yml | 8 ++++++--
 2 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 5d3660ef0..492f9aedf 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -5,9 +5,13 @@ name: Celeborn CI
 
 on:
   push:
-    branches: [ main ]
+    branches:
+      - main
+      - branch-*
   pull_request:
-    branches: [ main ]
+    branches:
+      - main
+      - branch-*
 
 jobs:
   service:
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml
index d5ec23a81..3fc541e7a 100644
--- a/.github/workflows/style.yml
+++ b/.github/workflows/style.yml
@@ -19,9 +19,13 @@ name: Style check
 
 on:
   push:
-    branches: [ main ]
+    branches:
+      - main
+      - branch-*
   pull_request:
-    branches: [ main ]
+    branches:
+      - main
+      - branch-*
 
 concurrency:
   group: style-${{ github.ref }}