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 3f06131a41 [#9314] improvement(CI): Update cherry-pick workflow to
target new branch versions (#9315)
3f06131a41 is described below
commit 3f06131a41590e5d3d44f5853fed552e31cbbf7b
Author: Mini Yu <[email protected]>
AuthorDate: Mon Dec 1 20:39:18 2025 +0800
[#9314] improvement(CI): Update cherry-pick workflow to target new branch
versions (#9315)
### What changes were proposed in this pull request?
Updated the GitHub Actions workflow to rename branches from `0.x` to
`1.x`. This aligns with the new branching convention and ensures
cherry-pick automation works for the renamed branches.
### Why are the changes needed?
- Branch-0.8 and Branch-0.9 will not be updated anymore.
- Branch-1.1 will be released within two weeks.
-
Fix: #9314
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
Existing CI.
---
.github/workflows/auto-cherry-pick.yml | 33 ++++++++++++++++-----------------
1 file changed, 16 insertions(+), 17 deletions(-)
diff --git a/.github/workflows/auto-cherry-pick.yml
b/.github/workflows/auto-cherry-pick.yml
index 2b940151d6..9e7f26783b 100644
--- a/.github/workflows/auto-cherry-pick.yml
+++ b/.github/workflows/auto-cherry-pick.yml
@@ -7,56 +7,55 @@ on:
types: ["closed"]
jobs:
- cherry_pick_branch_0_8:
+ cherry_pick_branch_1_0:
runs-on: ubuntu-latest
- name: Cherry pick into branch_0.8
- if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.8') &&
github.event.pull_request.merged == true }}
+ name: Cherry pick into branch_1.0
+ if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-1.0') &&
github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- - name: Cherry pick into branch-0.8
+ - name: Cherry pick into branch-1.0
uses:
carloscastrojumo/github-cherry-pick-action@503773289f4a459069c832dc628826685b75b4b3
with:
- branch: branch-0.8
+ branch: branch-1.0
labels: |
cherry-pick
reviewers: |
jerryshao
- FANNG1
- cherry_pick_branch_0_9:
+ cherry_pick_branch_1_1:
runs-on: ubuntu-latest
- name: Cherry pick into branch_0.9
- if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.9') &&
github.event.pull_request.merged == true }}
+ name: Cherry pick into branch_1.1
+ if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-1.1') &&
github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- - name: Cherry pick into branch-0.9
+ - name: Cherry pick into branch-1.1
uses:
carloscastrojumo/github-cherry-pick-action@503773289f4a459069c832dc628826685b75b4b3
with:
- branch: branch-0.9
+ branch: branch-1.1
labels: |
cherry-pick
reviewers: |
- jerqi
+ jerryshao
- cherry_pick_branch_1_0:
+ cherry_pick_branch_1_2:
runs-on: ubuntu-latest
- name: Cherry pick into branch_1.0
- if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-1.0') &&
github.event.pull_request.merged == true }}
+ name: Cherry pick into branch_1.2
+ if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-1.2') &&
github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- - name: Cherry pick into branch-1.0
+ - name: Cherry pick into branch-1.2
uses:
carloscastrojumo/github-cherry-pick-action@503773289f4a459069c832dc628826685b75b4b3
with:
- branch: branch-1.0
+ branch: branch-1.2
labels: |
cherry-pick
reviewers: |