klion26 commented on code in PR #3917: URL: https://github.com/apache/amoro/pull/3917#discussion_r2510009486
########## .github/workflows/deps.yml: ########## @@ -0,0 +1,45 @@ +# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: Deps CI with Maven + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +on: + push: + branches: + - "master" + - "0.**" Review Comment: nit: here add `0.**` branch, isn't `master` enough for this, for the pattern`0.**`, we need to update this if the version become `1.xx` -- 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]
