From da1e7bed1a6eaf2180ec4f5c57d189227ff08a99 Mon Sep 17 00:00:00 2001 From: lmatz Date: Mon, 9 Oct 2023 12:48:47 +0800 Subject: [PATCH] chore: update cherry pick action version (#12692) --- .github/workflows/cherry-pick-to-release-branch.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cherry-pick-to-release-branch.yml b/.github/workflows/cherry-pick-to-release-branch.yml index e98e1769630b9..026b2313d8353 100644 --- a/.github/workflows/cherry-pick-to-release-branch.yml +++ b/.github/workflows/cherry-pick-to-release-branch.yml @@ -6,8 +6,8 @@ on: types: ["closed", "labeled"] jobs: - release_pull_request_1_1: - if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.1') && github.event.pull_request.merged == true" + release_pull_request_1_3: + if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.3') && github.event.pull_request.merged == true" runs-on: ubuntu-latest name: release_pull_request steps: @@ -16,9 +16,9 @@ jobs: - name: Create PR to branch uses: risingwavelabs/github-action-cherry-pick@master with: - pr_branch: 'v1.1-rc' + pr_branch: 'v1.3-rc' pr_labels: 'cherry-pick' - pr_body: ${{ format('Cherry picking \#{0} onto branch v1.1-rc', github.event.number) }} + pr_body: ${{ format('Cherry picking \#{0} onto branch v1.3-rc', github.event.number) }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}