Skip to content

Commit c39a3fe

Browse files
authored
Fix wrong usage of inputs (#17751)
1 parent ada8550 commit c39a3fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/integration-server-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: ./.github/workflows/generate-bc-upgrade-paths
4848

4949
run-upgrade:
50-
if: ${{ !contains(inputs.should_run, 'false') }}
50+
if: ${{ !contains(inputs.run-upgrade-tests, 'false') }}
5151
name: Upgrade tests (SNAPSHOT)
5252
runs-on: ubuntu-latest
5353
strategy:
@@ -83,7 +83,7 @@ jobs:
8383
SCENARIO="${{ matrix.scenario }}" UPGRADE_PATH="${{ matrix.upgrade-path }}" SNAPSHOT=true make integration-server-test/upgrade
8484
8585
run-upgrade-bc:
86-
if: ${{ !contains(inputs.should_run, 'false') }}
86+
if: ${{ !contains(inputs.run-upgrade-bc-tests, 'false') }}
8787
name: Upgrade tests (BC)
8888
runs-on: ubuntu-latest
8989
needs: prepare
@@ -116,7 +116,7 @@ jobs:
116116
SCENARIO="${{ matrix.scenario }}" UPGRADE_PATH="${{ matrix.upgrade-path }}" make integration-server-test/upgrade
117117
118118
run-standalone:
119-
if: ${{ !contains(inputs.should_run, 'false') }}
119+
if: ${{ !contains(inputs.run-standalone-tests, 'false') }}
120120
name: Standalone-to-managed tests
121121
runs-on: ubuntu-latest
122122
strategy:

0 commit comments

Comments
 (0)