Skip to content

Commit f03e21b

Browse files
committed
Adjust matrix ref
I'll need to make sure this doesn't break the nightly cron.
1 parent 8a887a1 commit f03e21b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v6
4242
- name: Generate Matrix
4343
id: set-matrix
44-
run: php .github/nightly_matrix.php "${{ github.event_name }}" "${{ github.run_attempt }}" "${{ github.head_ref || github.ref_name }}" '${{ toJSON(github.event.pull_request.labels) }}'
44+
run: php .github/nightly_matrix.php "${{ github.event_name }}" "${{ github.run_attempt }}" "${{ github.ref }}" '${{ toJSON(github.event.pull_request.labels) }}'
4545
PUSH:
4646
needs: GENERATE_MATRIX
4747
name: ${{ fromJson(needs.GENERATE_MATRIX.outputs.branches)[0].ref }}

.github/workflows/root.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
nightly-
3232
- name: Generate Matrix
3333
id: set-matrix
34-
run: php .github/nightly_matrix.php "${{ github.event_name }}" "${{ github.run_attempt }}" "${{ github.head_ref || github.ref_name }}"
34+
run: php .github/nightly_matrix.php "${{ github.event_name }}" "${{ github.run_attempt }}" "${{ github.ref }}"
3535
NIGHTLY:
3636
needs: GENERATE_MATRIX
3737
name: ${{ matrix.branch.ref }}

0 commit comments

Comments
 (0)