From 48f772332d8d1cecae9f3948d07e08380e0ba042 Mon Sep 17 00:00:00 2001 From: Filip Strozik Date: Wed, 8 May 2024 12:51:13 +0200 Subject: [PATCH] add more logs --- .github/actions/rebase/action.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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