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 7b196b5574 [MINOR] Add github action to auto-cherrypick to branch-1.0
(#8397)
7b196b5574 is described below
commit 7b196b5574d69fdf17e47c4aadce89052080ada7
Author: Jerry Shao <[email protected]>
AuthorDate: Wed Sep 3 14:04:53 2025 +0800
[MINOR] Add github action to auto-cherrypick to branch-1.0 (#8397)
### What changes were proposed in this pull request?
Add github action to auto cherry-pick commit to branch-1.0
### Why are the changes needed?
Prepare for 1.0.0 release
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
No.
---
.github/workflows/auto-cherry-pick.yml | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/auto-cherry-pick.yml
b/.github/workflows/auto-cherry-pick.yml
index 123ae2ce2d..2b940151d6 100644
--- a/.github/workflows/auto-cherry-pick.yml
+++ b/.github/workflows/auto-cherry-pick.yml
@@ -42,7 +42,25 @@ jobs:
labels: |
cherry-pick
reviewers: |
- jerqi
+ jerqi
+
+ cherry_pick_branch_1_0:
+ 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 }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: Cherry pick into branch-1.0
+ uses:
carloscastrojumo/github-cherry-pick-action@503773289f4a459069c832dc628826685b75b4b3
+ with:
+ branch: branch-1.0
+ labels: |
+ cherry-pick
+ reviewers: |
+ jerryshao
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}