Copilot commented on code in PR #4285:
URL: https://github.com/apache/streampark/pull/4285#discussion_r2335246401


##########
.github/workflows/docker-push.yml:
##########
@@ -18,12 +18,13 @@
 name: "Build Docker Image"
 
 on:
+  schedule:
+    - cron: '40 01 * * *'
   push:
     branches:
       - release-*
-  release:
-    types:
-      - released
+    tags:
+      - 'v[2-9]+.[0-9]+.[0-9]+'

Review Comment:
   The tag pattern 'v[2-9]+.[0-9]+.[0-9]+' excludes version 1.x.x entirely. 
This could be problematic if you need to publish v1.x.x versions in the future. 
Consider using 'v[0-9]+.[0-9]+.[0-9]+' to include all semantic versions, or 
document why v1.x.x is explicitly excluded.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to