diff --git a/.github/actions/rebase/action.yaml b/.github/actions/rebase/action.yaml index 19c335a62..206a73358 100644 --- a/.github/actions/rebase/action.yaml +++ b/.github/actions/rebase/action.yaml @@ -6,6 +6,10 @@ runs: steps: - name: Rebase to main run: | - git fetch --all git rebase origin/main shell: bash + + - name: Print branch log + run: | + git log main~1.. + shell: bash