diff --git a/.github/workflows/cpp-packaging.yml b/.github/workflows/cpp-packaging.yml index ef5d96899..85c1fc368 100644 --- a/.github/workflows/cpp-packaging.yml +++ b/.github/workflows/cpp-packaging.yml @@ -677,7 +677,7 @@ jobs: with: python-version: '3.7' - name: Use expanded matrix - if: github.event_name == 'schedule' || github.event.inputs.use_expanded_matrix == '1' + if: github.event.inputs.use_expanded_matrix == '1' run: | echo "USE_EXPANDED_MATRIX=1" >> $GITHUB_ENV - name: Generate token for GitHub API diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 78ca8f74f..c0dcf1fb5 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -191,7 +191,7 @@ jobs: fetch-depth: 0 submodules: false - name: Use expanded matrix - if: github.event_name == 'schedule' || github.event.inputs.use_expanded_matrix == '1' || needs.check_trigger.outputs.requested_tests == 'full' + if: github.event.inputs.use_expanded_matrix == '1' || needs.check_trigger.outputs.requested_tests == 'full' run: | echo "EXPANDED_MATRIX_PARAM=-e=1" >> $GITHUB_ENV - name: Set auto-diff option if specified.