Skip to content

Commit

Permalink
Fix PHP8 pipeline
Browse files Browse the repository at this point in the history
As per #843 (comment)

Co-Authored-By: El RIDO <elrido@gmx.net>
  • Loading branch information
rugk and elrido committed Oct 11, 2021
1 parent 2d1552a commit f6421c9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/refresh-php8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Checkout php8 branch
run: git checkout php8
uses: actions/checkout@v2
with:
# directly checkout the php8 branch
ref: php8
# Number of commits to fetch. 0 indicates all history for all branches and tags.
# Default: 1
fetch-depth: 0

- name: Merge master changes into php8
run: git merge master
Expand Down

0 comments on commit f6421c9

Please sign in to comment.