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

JingsongLi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-mosaic.git


The following commit(s) were added to refs/heads/main by this push:
     new 5f7410e  Add schedule and workflow_dispatch triggers to 
publish_snapshot
5f7410e is described below

commit 5f7410e6e7390878bedd29fe60b93517b593ce93
Author: JingsongLi <[email protected]>
AuthorDate: Wed May 20 18:12:00 2026 +0800

    Add schedule and workflow_dispatch triggers to publish_snapshot
---
 .github/workflows/publish_snapshot.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/publish_snapshot.yml 
b/.github/workflows/publish_snapshot.yml
index bdae106..5181831 100644
--- a/.github/workflows/publish_snapshot.yml
+++ b/.github/workflows/publish_snapshot.yml
@@ -21,12 +21,16 @@ name: Publish Snapshot
 on:
   push:
     branches: [main]
+  schedule:
+    # At the end of every day
+    - cron: '0 0 * * *'
+  workflow_dispatch:
 
 env:
   JDK_VERSION: 8
 
 concurrency:
-  group: ${{ github.workflow }}-${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.event_name }}-${{ 
github.event.number || github.run_id }}
   cancel-in-progress: true
 
 jobs:

Reply via email to