Skip to content

Commit

Permalink
Added more reporting for better debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-fritz committed Apr 16, 2024
1 parent efdaa05 commit cbf0b5d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/gitlab_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,13 @@ jobs:
if: github.event_name == 'pull_request_target'
run: |
git fetch
echo "Checkout of ${{ github.base_ref }}"
git checkout "${{ github.base_ref }}"
echo "Git pull"
git pull
echo "New branch shall be named: TEMPORARY_MERGE_PR_${{ github.event.number }}"
echo "MIRROR_BRANCH=TEMPORARY_MERGE_PR_${{ github.event.number }}" >> "$GITHUB_ENV"
echo "Create new branch $ {{ github.env.MIRROR_BRANCH }} and check it out"
git checkout -b "${{ github.env.MIRROR_BRANCH }}"
git merge --ff-only "${{ github.event.pull_request.head.sha }}"
- name: Mirror and wait for Gitlab-CI
Expand Down

0 comments on commit cbf0b5d

Please sign in to comment.