Skip to content

Commit

Permalink
gh: fix the action that triggers gitlab
Browse files Browse the repository at this point in the history
Before, git was complaining that the branch name was ambiguous.
  • Loading branch information
lavocatt authored and achilleas-k committed Jul 11, 2022
1 parent 0baa333 commit acee92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/trigger-gitlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if [ ! -z "$PR" ]; then
git checkout -b PR-$PR
else
git checkout ${{ github.event.workflow_run.head_branch }}
git checkout ${{ github.event.workflow_run.head_branch }} --
fi
- name: Push to gitlab
Expand Down

0 comments on commit acee92b

Please sign in to comment.