From d6aa5b56cee727eeadca8d4aecdc224df1316c13 Mon Sep 17 00:00:00 2001 From: Guy Daich Date: Wed, 10 Jul 2024 06:41:58 -0500 Subject: [PATCH] ci: update cherry-pick v1.1.0 (#3803) Signed-off-by: Guy Daich --- .github/workflows/cherrypick.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cherrypick.yaml b/.github/workflows/cherrypick.yaml index 4de9cbbdf5d..775e2fc2d7a 100644 --- a/.github/workflows/cherrypick.yaml +++ b/.github/workflows/cherrypick.yaml @@ -9,26 +9,26 @@ permissions: contents: read jobs: - cherry_pick_release_v1_0: + cherry_pick_release_v1_1: permissions: pull-requests: write contents: write runs-on: ubuntu-22.04 - name: Cherry pick into release-v1.0 - if: ${{ contains(github.event.pull_request.labels.*.name, 'cherrypick/release-v1.0') && github.event.pull_request.merged == true }} + name: Cherry pick into release-v1.1 + if: ${{ contains(github.event.pull_request.labels.*.name, 'cherrypick/release-v1.1') && github.event.pull_request.merged == true }} steps: - name: Checkout uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 - - name: Cherry pick into release/v1.0 + - name: Cherry pick into release/v1.1 uses: carloscastrojumo/github-cherry-pick-action@503773289f4a459069c832dc628826685b75b4b3 # v1.0.10 with: - branch: release/v1.0 - title: "[release/v1.0] {old_title}" - body: "Cherry picking #{old_pull_request_id} onto release/v1.0" + branch: release/v1.1 + title: "[release/v1.1] {old_title}" + body: "Cherry picking #{old_pull_request_id} onto release/v1.1" labels: | - cherrypick/release-v1.0 + cherrypick/release-v1.1 # put release manager here reviewers: | - Xunzhuo + guydc