diff --git a/.github/workflows/cherry-pick-to-release-branch.yml b/.github/workflows/cherry-pick-to-release-branch.yml index 026b2313d8353..6b04e6a2a97a9 100644 --- a/.github/workflows/cherry-pick-to-release-branch.yml +++ b/.github/workflows/cherry-pick-to-release-branch.yml @@ -22,8 +22,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - release_pull_request_1_2: - if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.2') && github.event.pull_request.merged == true" + release_pull_request_1_4: + if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.4') && github.event.pull_request.merged == true" runs-on: ubuntu-latest name: release_pull_request steps: @@ -32,9 +32,9 @@ jobs: - name: Create PR to branch uses: risingwavelabs/github-action-cherry-pick@master with: - pr_branch: 'v1.2-rc' + pr_branch: 'v1.4-rc' pr_labels: 'cherry-pick' - pr_body: ${{ format('Cherry picking \#{0} onto branch v1.2-rc', github.event.number) }} + pr_body: ${{ format('Cherry picking \#{0} onto branch v1.4-rc', github.event.number) }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}