diff --git a/.github/actions/rebase/action.yaml b/.github/actions/rebase/action.yaml index f28924dc4..043e5c31c 100644 --- a/.github/actions/rebase/action.yaml +++ b/.github/actions/rebase/action.yaml @@ -4,8 +4,7 @@ description: 'Action for rebasing to the main branch' runs: using: 'composite' steps: - - name: Rebase to upstream/main + - name: Rebase to main run: | - git remote -v - git rebase upstream/main + git rebase origin/main shell: bash