From 18c2e693bdb32442cea577821e20443a4b9a7632 Mon Sep 17 00:00:00 2001 From: Jim Wild Date: Wed, 6 Nov 2024 15:08:09 +0000 Subject: [PATCH] Fix: [AEA-0000] - Fix typo in java sonar (#10) ## Summary - Routine Change ### Details It turns out that `'true' != true` --------- Signed-off-by: Jim Wild --- .github/workflows/quality-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index 0eb7cc9..867bd46 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -326,7 +326,7 @@ jobs: - name: "check is SONAR_TOKEN exists" env: super_secret: ${{ secrets.SONAR_TOKEN }} - if: ${{ env.super_secret != '' && inputs.run_sonar == 'true' }} + if: ${{ env.super_secret != '' && inputs.run_sonar == true }} run: echo "SONAR_TOKEN_EXISTS=true" >> "$GITHUB_ENV" - name: Run SonarQube analysis