We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 662717e + 1efc1a5 commit 5b5df8aCopy full SHA for 5b5df8a
.github/workflows/ci-7.x.yml
@@ -57,8 +57,16 @@ jobs:
57
name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} (${{ matrix.os }})
58
runs-on: ${{ matrix.os }}-latest
59
steps:
60
- - name: Checkout the code
+ - name: Checkout the PR Branch
61
+ uses: actions/checkout@v3
62
+ if: ${{ github.event_name == 'pull_request' }}
63
+
64
+ - name: Checkout the v7 Branch
65
uses: actions/checkout@v2
66
+ if: ${{ github.event_name == 'schedule' }}
67
+ with:
68
+ # Set the branch to our version branch not master when scheduled.
69
+ ref: 'next/7.x/main'
70
71
- name: Install PHP and composer environment
72
uses: shivammathur/setup-php@v2
0 commit comments