From 3d77417ee383fdbf5f5776e0d4b05ded743233a2 Mon Sep 17 00:00:00 2001 From: FletcherMan Date: Fri, 27 Sep 2024 22:41:47 +0800 Subject: [PATCH] add workflows for cherry-pick 0.6.x --- .github/workflows/cherry_pick.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/cherry_pick.yml b/.github/workflows/cherry_pick.yml index c2eacc340..6ac79d18a 100644 --- a/.github/workflows/cherry_pick.yml +++ b/.github/workflows/cherry_pick.yml @@ -52,6 +52,23 @@ jobs: branch: release/0.5.x labels: | cherry-pick + + + cherry_pick_release_0_6_x: + runs-on: ubuntu-latest + name: Cherry pick into release/0.6.x + if: ${{ contains(github.event.pull_request.labels.*.name, 'release/0.6.x') && github.event.pull_request.merged == true }} + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Cherry pick into release/0.6.x + uses: carloscastrojumo/github-cherry-pick-action@v1.0.1 + with: + branch: release/0.6.x + labels: | + cherry-pick env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file