From 5c47d06ec49cc7032117121e95f734a45a48a6c3 Mon Sep 17 00:00:00 2001 From: Konstantinos Messis <35975404+MessKon@users.noreply.github.com> Date: Mon, 24 Apr 2023 17:27:53 +0100 Subject: [PATCH] fix: Sync beta using intermediate branch (#62) Use branch sync_from_main. --- .github/workflows/sync_branches.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync_branches.yml b/.github/workflows/sync_branches.yml index f20d261..bec83e0 100644 --- a/.github/workflows/sync_branches.yml +++ b/.github/workflows/sync_branches.yml @@ -35,6 +35,8 @@ jobs: id: pull run: | git checkout main + git checkout -b sync_from_main + git push origin sync_from_main hub pull-request -m "chore: Sync main with beta" \ -m "Sync latest main with beta branch" \ -b beta \