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 c3d3ea67e CI for feature branches (#3686)
c3d3ea67e is described below
commit c3d3ea67e0e11a2d53ce01a95c23ca8d136844b6
Author: Robert Stupp <[email protected]>
AuthorDate: Fri Feb 6 16:11:08 2026 +0100
CI for feature branches (#3686)
This change enables CI on branches matching the pattern `feature/*`.
This change does _not_ require PRs against `feature/*` branches to have
"green" CI.
---
.github/workflows/ci-main.yml | 2 +-
.github/workflows/ci-pr.yml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml
index 57da3e57f..d76b9fce1 100644
--- a/.github/workflows/ci-main.yml
+++ b/.github/workflows/ci-main.yml
@@ -22,7 +22,7 @@ run-name: CI/${{github.ref_name}}
${{github.event.head_commit.message}}
on:
push:
- branches: [ "main", "release/*" ]
+ branches: [ "main", "release/*", "feature/*" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml
index c1e1a3659..063b23656 100644
--- a/.github/workflows/ci-pr.yml
+++ b/.github/workflows/ci-pr.yml
@@ -22,7 +22,7 @@ run-name: PR#${{ github.event.number }} ${{
github.event.pull_request.title }}
on:
pull_request:
- branches: [ "main", "release/*" ]
+ branches: [ "main", "release/*", "feature/*" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}