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

Yicong-Huang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git


The following commit(s) were added to refs/heads/main by this push:
     new b3d4e750ed ci: protect release/* branches with CI (#4595)
b3d4e750ed is described below

commit b3d4e750ed4c263d670595e03530ad1bb53908ba
Author: Yicong Huang <[email protected]>
AuthorDate: Thu Apr 30 23:48:15 2026 -0700

    ci: protect release/* branches with CI (#4595)
    
    ### What changes were proposed in this PR?
    This PR enables the existing `Build` GitHub Actions workflow to run on
    direct pushes to release branches by adding `release/**` to the workflow
    trigger list.
    
    This is the minimal change needed so branches such as
    `release/v1.1.0-incubating` will receive CI runs on push.
    
    ### Any related issues, documentation, discussions?
    Closes #4594
    
    ### How was this PR tested?
    - Verified the workflow trigger configuration now includes `release/**`
    in `.github/workflows/github-action-build.yml`.
    - Ran `git diff --check` locally.
    - Did not run the full CI suite locally; verification is expected from
    GitHub Actions after the PR updates.
    
    ### Was this PR authored or co-authored using generative AI tooling?
    Generated-by: Codex GPT-5
---
 .github/workflows/github-action-build.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/github-action-build.yml 
b/.github/workflows/github-action-build.yml
index f7a72b8da5..a3d840fc90 100644
--- a/.github/workflows/github-action-build.yml
+++ b/.github/workflows/github-action-build.yml
@@ -25,6 +25,7 @@ on:
     branches:
       - 'ci-enable/**'
       - 'main'
+      - 'release/**'
   pull_request:
   workflow_dispatch:
 

Reply via email to