Skip to content

Commit

Permalink
tests: fix execution of nested tests in ci workflow (#14748)
Browse files Browse the repository at this point in the history
Updated the check needed to run nested tests in the ci based on the
group name.
  • Loading branch information
sergiocazzolato authored Nov 20, 2024
1 parent fbfa7e3 commit f23e5ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/spread-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
mkdir -p "$TEST_RESULTS_DIR"
- name: Prepare nested env vars
if: contains(github.event.pull_request.labels.*.name, 'Run nested') && startsWith(matrix.group, 'nested-')
if: contains(github.event.pull_request.labels.*.name, 'Run nested') && startsWith(inputs.group, 'nested-')
run: |
echo "RUN_NESTED=true" >> "$GITHUB_ENV"
Expand Down

0 comments on commit f23e5ed

Please sign in to comment.