Skip to content

Commit 4d8855c

Browse files
authored
Merge pull request #135 from rollbar/ci
Fixed typo in workflows 'ref' not child of 'with'
2 parents 7d70733 + e9b6428 commit 4d8855c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci-2.x.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ jobs:
4848

4949
- name: Checkout the v2 Branch
5050
uses: actions/checkout@v2
51-
# Set the branch to our version branch not master when scheduled.
52-
ref: 'next/2.x/main'
5351
if: ${{ github.event_name == 'schedule' }}
52+
with:
53+
# Set the branch to our version branch not master when scheduled.
54+
ref: 'next/2.x/main'
5455

5556
- name: Install PHP and composer environment
5657
uses: shivammathur/setup-php@v2

.github/workflows/ci-4.x.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ jobs:
4848

4949
- name: Checkout the v4 Branch
5050
uses: actions/checkout@v2
51-
# Set the branch to our version branch not master when scheduled.
52-
ref: 'next/4.x/main'
5351
if: ${{ github.event_name == 'schedule' }}
52+
with:
53+
# Set the branch to our version branch not master when scheduled.
54+
ref: 'next/4.x/main'
5455

5556
- name: Install PHP and composer environment
5657
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)