1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-30 12:48:21 +02:00

[ticket/17396] Adjust merge code

PHPBB-17396
This commit is contained in:
Marc Alexander 2024-09-17 22:10:28 +02:00
parent 3d70d87b57
commit 4fb06b00b7
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -28,7 +28,8 @@ jobs:
id: simulate_merge
run: |
git checkout 3.3.x
git merge --no-ff ${{ github.event.pull_request.head.sha }} || exit 1
git fetch origin pull/${{ github.event.pull_request.number }}/head
git merge --no-ff FETCH_HEAD || exit 1
- name: Attempt to merge updated 3.3.x into master
id: merge_master