Skip to content

Commit

Permalink
Merge pull request PrestaShop#50 from jolelievre/missing-merge
Browse files Browse the repository at this point in the history
Add missing management of merge in checkout action
  • Loading branch information
boubkerbribri authored Sep 25, 2023
2 parents 9e95ce5 + 3f5111e commit bbeb9ea
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/actions/checkout-prestashop/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ runs:
git rebase origin/${{ inputs.base_branch }}
shell: bash

- name: Merge
working-directory: ${{ inputs.ps_dir }}
if: ${{ inputs.rebase_or_merge == 'merge' }}
run: |
git fetch origin ${{ inputs.base_branch }}:${{ inputs.base_branch }}
git merge origin/${{ inputs.base_branch }}
shell: bash

# Workaround until https://github.com/PrestaShop/PrestaShop/issues/29813 is fixed
- name: PrestaShop Configuration (Copy of Config API)
if: (inputs.base_branch == '8.1.x') || (inputs.base_branch == 'develop')
Expand Down

0 comments on commit bbeb9ea

Please sign in to comment.