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

snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new 6cd6696c3 Run CI on release branches (#3121)
6cd6696c3 is described below

commit 6cd6696c38e976208afdac38fb0813c381b822cb
Author: Robert Stupp <[email protected]>
AuthorDate: Tue Nov 25 19:27:09 2025 +0100

    Run CI on release branches (#3121)
    
    The release workflows check whether CI passes for the required checks.
    This would fail, because CI isn't configured to run on release branches.
    
    This change lets CI run on `release/*` branches.
---
 .github/workflows/check-md-link.yml         | 4 ++--
 .github/workflows/gradle.yml                | 2 +-
 .github/workflows/helm.yml                  | 2 +-
 .github/workflows/python-client.yml         | 2 +-
 .github/workflows/regtest.yml               | 2 +-
 .github/workflows/site.yml                  | 3 ++-
 .github/workflows/spark_client_regtests.yml | 2 +-
 7 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/check-md-link.yml 
b/.github/workflows/check-md-link.yml
index 0ccd04049..119881d12 100644
--- a/.github/workflows/check-md-link.yml
+++ b/.github/workflows/check-md-link.yml
@@ -28,9 +28,9 @@ name: Check Markdown links
 
 on:
   push:
-    branches:
-      - 'main'
+    branches: [ "main", "release/*" ]
   pull_request:
+    branches: [ "main", "release/*" ]
 
 jobs:
   markdown-link-check:
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
index b601c3599..686dab071 100644
--- a/.github/workflows/gradle.yml
+++ b/.github/workflows/gradle.yml
@@ -28,7 +28,7 @@ name: Java CI with Gradle
 
 on:
   push:
-    branches: [ "main" ]
+    branches: [ "main", "release/*" ]
   pull_request:
     branches: [ "main", "release/*" ]
 
diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml
index cdfbe16a6..01b82fb40 100644
--- a/.github/workflows/helm.yml
+++ b/.github/workflows/helm.yml
@@ -26,7 +26,7 @@ name: Helm tests
 
 on:
   push:
-    branches: [ "main" ]
+    branches: [ "main", "release/*" ]
   pull_request:
     branches: [ "main", "release/*" ]
 
diff --git a/.github/workflows/python-client.yml 
b/.github/workflows/python-client.yml
index ac00a17cf..34bc00f73 100644
--- a/.github/workflows/python-client.yml
+++ b/.github/workflows/python-client.yml
@@ -28,7 +28,7 @@ name: Python Client CI
 
 on:
   push:
-    branches: [ "main" ]
+    branches: [ "main", "release/*" ]
   pull_request:
     branches: [ "main", "release/*" ]
 
diff --git a/.github/workflows/regtest.yml b/.github/workflows/regtest.yml
index 16469b425..2f253f7b9 100644
--- a/.github/workflows/regtest.yml
+++ b/.github/workflows/regtest.yml
@@ -20,7 +20,7 @@
 name: Regression Tests
 on:
   push:
-    branches: [ "main" ]
+    branches: [ "main", "release/*" ]
   pull_request:
     branches: [ "main", "release/*" ]
 
diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml
index 4c58a5fee..d8942ce47 100644
--- a/.github/workflows/site.yml
+++ b/.github/workflows/site.yml
@@ -20,8 +20,9 @@
 name: "Hugo Site"
 on:
   push:
-    branches: [ "main", "versioned-docs" ]
+    branches: [ "main", "release/*", "versioned-docs" ]
   pull_request:
+    branches: [ "main", "release/*" ]
 
 jobs:
   site:
diff --git a/.github/workflows/spark_client_regtests.yml 
b/.github/workflows/spark_client_regtests.yml
index eba34722b..06375309c 100644
--- a/.github/workflows/spark_client_regtests.yml
+++ b/.github/workflows/spark_client_regtests.yml
@@ -20,7 +20,7 @@
 name: Spark Client Regression Tests
 on:
   push:
-    branches: [ "main" ]
+    branches: [ "main", "release/*" ]
   pull_request:
     branches: [ "main", "release/*" ]
 

Reply via email to