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

jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/main by this push:
     new 9d251096b1 [MINOR] add auto cherry pick to branch-0.8 (#6089)
9d251096b1 is described below

commit 9d251096b1fa4d5f3023c17f75403c481f844985
Author: FANNG <[email protected]>
AuthorDate: Mon Jan 6 11:19:06 2025 +0800

    [MINOR] add auto cherry pick to branch-0.8 (#6089)
    
    ### What changes were proposed in this pull request?
    
    add auto cherry pick to branch-0.8
    
    ### Why are the changes needed?
    
    prepare release 0.8
    
    
    ### Does this PR introduce _any_ user-facing change?
    no
    
    ### How was this patch tested?
    no
---
 .github/workflows/auto-cherry-pick.yml | 40 ++++++++++------------------------
 1 file changed, 11 insertions(+), 29 deletions(-)

diff --git a/.github/workflows/auto-cherry-pick.yml 
b/.github/workflows/auto-cherry-pick.yml
index 0a264e8352..efea282370 100644
--- a/.github/workflows/auto-cherry-pick.yml
+++ b/.github/workflows/auto-cherry-pick.yml
@@ -7,60 +7,42 @@ on:
     types: ["closed"]
 
 jobs:
-  cherry_pick_branch_0_5:
-    runs-on: ubuntu-latest
-    name: Cherry pick into branch_0.5
-    if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.5') && 
github.event.pull_request.merged == true }}
-    steps:
-      - name: Checkout
-        uses: actions/checkout@v2
-        with:
-          fetch-depth: 0
-      - name: Cherry pick into branch-0.5
-        uses: carloscastrojumo/[email protected]
-        with:
-          branch: branch-0.5
-          labels: |
-            cherry-pick
-          reviewers: |
-            jerryshao
-
-  cherry_pick_branch_0_6:
+  cherry_pick_branch_0_7:
     runs-on: ubuntu-latest
-    name: Cherry pick into branch_0.6
-    if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.6') && 
github.event.pull_request.merged == true }}
+    name: Cherry pick into branch_0.7
+    if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.7') && 
github.event.pull_request.merged == true }}
     steps:
       - name: Checkout
         uses: actions/checkout@v2
         with:
           fetch-depth: 0
-      - name: Cherry pick into branch-0.6
+      - name: Cherry pick into branch-0.7
         uses: carloscastrojumo/[email protected]
         with:
-          branch: branch-0.6
+          branch: branch-0.7
           labels: |
             cherry-pick
           reviewers: |
             jerryshao
 
-
-  cherry_pick_branch_0_7:
+  cherry_pick_branch_0_8:
     runs-on: ubuntu-latest
-    name: Cherry pick into branch_0.7
-    if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.7') && 
github.event.pull_request.merged == true }}
+    name: Cherry pick into branch_0.8
+    if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.8') && 
github.event.pull_request.merged == true }}
     steps:
       - name: Checkout
         uses: actions/checkout@v2
         with:
           fetch-depth: 0
-      - name: Cherry pick into branch-0.7
+      - name: Cherry pick into branch-0.8
         uses: carloscastrojumo/[email protected]
         with:
-          branch: branch-0.7
+          branch: branch-0.8
           labels: |
             cherry-pick
           reviewers: |
             jerryshao
+            FANNG1
 
 env:
   GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Reply via email to