From 5dc80a91de958054714d54e62f128263425a8750 Mon Sep 17 00:00:00 2001 From: Eric Yap Date: Sat, 19 Jul 2025 00:49:19 +0800 Subject: [PATCH] Fix wrong usage of inputs --- .github/workflows/integration-server-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-server-test.yml b/.github/workflows/integration-server-test.yml index dec3af64d45..e9548342680 100644 --- a/.github/workflows/integration-server-test.yml +++ b/.github/workflows/integration-server-test.yml @@ -47,7 +47,7 @@ jobs: uses: ./.github/workflows/generate-bc-upgrade-paths run-upgrade: - if: ${{ !contains(inputs.should_run, 'false') }} + if: ${{ !contains(inputs.run-upgrade-tests, 'false') }} name: Upgrade tests (SNAPSHOT) runs-on: ubuntu-latest strategy: @@ -83,7 +83,7 @@ jobs: SCENARIO="${{ matrix.scenario }}" UPGRADE_PATH="${{ matrix.upgrade-path }}" SNAPSHOT=true make integration-server-test/upgrade run-upgrade-bc: - if: ${{ !contains(inputs.should_run, 'false') }} + if: ${{ !contains(inputs.run-upgrade-bc-tests, 'false') }} name: Upgrade tests (BC) runs-on: ubuntu-latest needs: prepare @@ -116,7 +116,7 @@ jobs: SCENARIO="${{ matrix.scenario }}" UPGRADE_PATH="${{ matrix.upgrade-path }}" make integration-server-test/upgrade run-standalone: - if: ${{ !contains(inputs.should_run, 'false') }} + if: ${{ !contains(inputs.run-standalone-tests, 'false') }} name: Standalone-to-managed tests runs-on: ubuntu-latest strategy: