From 111b21ffee6e5bfcd45f3d58b9b339e8aac9e6a7 Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Mon, 7 Oct 2024 18:59:49 -0400 Subject: [PATCH] Change option --- .github/workflows/repository-management.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/repository-management.yml b/.github/workflows/repository-management.yml index ef20f383a8ee..ad9a712fc647 100644 --- a/.github/workflows/repository-management.yml +++ b/.github/workflows/repository-management.yml @@ -207,12 +207,12 @@ jobs: # Chery-pick from 'rc' into 'hotfix-rc' git switch hotfix-rc - git cherry-pick --strategy=theirs -x $RC_COMMIT + git cherry-pick --strategy-option=theirs -x $RC_COMMIT git push -u origin hotfix-rc # Cherry-pick from 'main' into 'rc' git switch rc - git cherry-pick --strategy=theirs -x $MAIN_COMMIT + git cherry-pick --strategy-option=theirs -x $MAIN_COMMIT git push -u origin rc # If the 'rc' branch does not exist: @@ -220,7 +220,7 @@ jobs: # Cherry-pick from 'main' into 'hotfix-rc' git switch hotfix-rc - git cherry-pick --strategy=theirs -x $MAIN_COMMIT + git cherry-pick --strategy-option=theirs -x $MAIN_COMMIT git push -u origin hotfix-rc fi @@ -230,7 +230,7 @@ jobs: # Cherry-pick from 'main' into 'rc' git switch rc - git cherry-pick --strategy=theirs -x $MAIN_COMMIT + git cherry-pick --strategy-option=theirs -x $MAIN_COMMIT git push -u origin rc fi