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

github-merge-queue[bot] 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 d46d623fdf chore(ci): run LICENSE-binary drift check weekly (#5406)
d46d623fdf is described below

commit d46d623fdf871bd3af3684975fbf3ed1985d9818
Author: Jiadong Bai <[email protected]>
AuthorDate: Sat Jun 6 09:15:02 2026 -0700

    chore(ci): run LICENSE-binary drift check weekly (#5406)
    
    ### What changes were proposed in this PR?
    
    Change the scheduled LICENSE-binary drift checker from daily to weekly.
    The workflow still runs at 11:00 UTC and still supports manual
    `workflow_dispatch` runs.
    
    ### Any related issues, documentation, discussions?
    
    Closes #5405.
    
    ### How was this PR tested?
    
    ```bash
    git diff --check
    ```
    
    ### Was this PR authored or co-authored using generative AI tooling?
    
    Generated-by: OpenAI Codex (GPT-5).
    
    Co-authored-by: Bob Bai <[email protected]>
---
 .github/workflows/license-binary-checker.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/license-binary-checker.yml 
b/.github/workflows/license-binary-checker.yml
index 069d99aa60..53ea2c46fe 100644
--- a/.github/workflows/license-binary-checker.yml
+++ b/.github/workflows/license-binary-checker.yml
@@ -22,8 +22,8 @@ name: License Binary Checker
 # one tracking issue (label `license-binary-drift`). Sub-task of #4688.
 on:
   schedule:
-    # 11:00 UTC daily = 04:00 PDT / 03:00 PST.
-    - cron: "0 11 * * *"
+    # 11:00 UTC every Monday = 04:00 PDT / 03:00 PST.
+    - cron: "0 11 * * 1"
   workflow_dispatch:
 
 permissions:

Reply via email to