Skip to content

Commit 8c5fe0d

Browse files
authored
Scheduled integration test workflow disable using expand matrix (#432)
Scheduled integration test workflow disable using expand matrix
1 parent 167e84b commit 8c5fe0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cpp-packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ jobs:
677677
with:
678678
python-version: '3.7'
679679
- name: Use expanded matrix
680-
if: github.event_name == 'schedule' || github.event.inputs.use_expanded_matrix == '1'
680+
if: github.event.inputs.use_expanded_matrix == '1'
681681
run: |
682682
echo "USE_EXPANDED_MATRIX=1" >> $GITHUB_ENV
683683
- name: Generate token for GitHub API

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
fetch-depth: 0
192192
submodules: false
193193
- name: Use expanded matrix
194-
if: github.event_name == 'schedule' || github.event.inputs.use_expanded_matrix == '1' || needs.check_trigger.outputs.requested_tests == 'full'
194+
if: github.event.inputs.use_expanded_matrix == '1' || needs.check_trigger.outputs.requested_tests == 'full'
195195
run: |
196196
echo "EXPANDED_MATRIX_PARAM=-e=1" >> $GITHUB_ENV
197197
- name: Set auto-diff option if specified.

0 commit comments

Comments
 (0)