Skip to content

Commit

Permalink
fix(rebase): fix "no rebase in progress" error
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Jul 28, 2022
1 parent bb75aeb commit 5553492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rebase/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
id: rebase
shell: bash
run: |
git rebase "origin/${{ inputs.base }}" || echo '::set-output name=fail::true' && git rebase --abort
git rebase "origin/${{ inputs.base }}" || (echo '::set-output name=fail::true' && git rebase --abort)
- name: 'Push'
shell: bash
Expand Down

0 comments on commit 5553492

Please sign in to comment.