This is an automated email from the ASF dual-hosted git repository. fanng 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 530a66ce2c [MINOR] build: Add auto cherry pick to branch-0.9 (#6896) 530a66ce2c is described below commit 530a66ce2c936a8a7c244701c15ae747ce2e0be2 Author: roryqi <h...@datastrato.com> AuthorDate: Fri Apr 11 17:12:02 2025 +0800 [MINOR] build: Add auto cherry pick to branch-0.9 (#6896) ### What changes were proposed in this pull request? Add auto cherry pick to branch-0.9 ### Why are the changes needed? Prepare for branch 0.9 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? No need. --- .github/workflows/auto-cherry-pick.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/auto-cherry-pick.yml b/.github/workflows/auto-cherry-pick.yml index 28f864f91c..7bee17eebf 100644 --- a/.github/workflows/auto-cherry-pick.yml +++ b/.github/workflows/auto-cherry-pick.yml @@ -7,42 +7,42 @@ on: types: ["closed"] jobs: - 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@v4 with: fetch-depth: 0 - - name: Cherry pick into branch-0.7 + - name: Cherry pick into branch-0.8 uses: carloscastrojumo/github-cherry-pick-action@v1.0.9 with: - branch: branch-0.7 + branch: branch-0.8 labels: | cherry-pick reviewers: | jerryshao + FANNG1 - cherry_pick_branch_0_8: + cherry_pick_branch_0_9: 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_0.9 + if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.9') && 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-0.9 uses: carloscastrojumo/github-cherry-pick-action@v1.0.9 with: - branch: branch-0.8 + branch: branch-0.9 labels: | cherry-pick reviewers: | - jerryshao - FANNG1 + jerqi env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}