From 1c9fcfc2b135b7d285bca297c41ae57713b4e2b0 Mon Sep 17 00:00:00 2001 From: Filip Strozik Date: Wed, 8 May 2024 22:48:03 +0200 Subject: [PATCH] add more logs --- .github/actions/rebase/action.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/actions/rebase/action.yaml b/.github/actions/rebase/action.yaml index 0ebd7bbaa..8fad9721b 100644 --- a/.github/actions/rebase/action.yaml +++ b/.github/actions/rebase/action.yaml @@ -4,9 +4,15 @@ description: 'Action for rebasing to the main branch' runs: using: 'composite' steps: + - name: Log + run: | + git log + git branch -v + git remote -v + shell: bash + - name: Rebase to main run: | - git fetch --all --force git rebase origin/main shell: bash