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

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


The following commit(s) were added to refs/heads/main by this push:
     new a20bf9498 ORC-2101: Enable GitHub Action CI in `branch-2.3`
a20bf9498 is described below

commit a20bf9498a64e8242dd54324019ce98a462362a0
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sun Feb 22 11:34:55 2026 -0800

    ORC-2101: Enable GitHub Action CI in `branch-2.3`
    
    ### What changes were proposed in this pull request?
    
    This PR aims to enable GitHub Action CI in `branch-2.3`.
    
    ### Why are the changes needed?
    
    Since `branch-2.3` is newly created, we need to enable CIs.
    - https://github.com/apache/orc/tree/branch-2.3
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    Generated-by: `Gemini 3.1 Pro (High)` on `Antigravity`
    
    Closes #2542 from dongjoon-hyun/ORC-2101.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 .github/workflows/build_and_test.yml   | 6 +++---
 .github/workflows/publish_snapshot.yml | 2 +-
 .github/workflows/sanitizer_test.yml   | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/build_and_test.yml 
b/.github/workflows/build_and_test.yml
index c0884f51e..4e4bc8c25 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -23,13 +23,13 @@ on:
     - 'site/**'
     - 'conan/**'
     branches:
-    - main
+    - branch-2.3
   pull_request:
     paths-ignore:
     - 'site/**'
     - 'conan/**'
     branches:
-    - main
+    - branch-2.3
   workflow_call:
 
 # Cancel previous PR build and test
@@ -60,7 +60,7 @@ jobs:
     - name: "Test"
       run: |
         cd docker
-        ./run-one.sh local main ${{ matrix.os }}
+        ./run-one.sh local branch-2.3 ${{ matrix.os }}
 
   build:
     name: "Java ${{ matrix.java }} and ${{ matrix.cxx }} on ${{ matrix.os }}"
diff --git a/.github/workflows/publish_snapshot.yml 
b/.github/workflows/publish_snapshot.yml
index 5fed68b4a..1082e50f6 100644
--- a/.github/workflows/publish_snapshot.yml
+++ b/.github/workflows/publish_snapshot.yml
@@ -3,7 +3,7 @@ name: Publish Snapshot
 on:
   push:
     branches:
-    - main
+    - branch-2.3
 
 jobs:
   publish-snapshot:
diff --git a/.github/workflows/sanitizer_test.yml 
b/.github/workflows/sanitizer_test.yml
index 2b6f577d8..3137eeb4b 100644
--- a/.github/workflows/sanitizer_test.yml
+++ b/.github/workflows/sanitizer_test.yml
@@ -23,7 +23,7 @@ on:
     - 'site/**'
     - 'conan/**'
     branches:
-    - main
+    - branch-2.3
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && 
github.event.number || github.sha }}

Reply via email to