From 179cfae61c33eb70f574be27f7e71863fa15c86b Mon Sep 17 00:00:00 2001 From: devinleighsmith Date: Tue, 17 Sep 2024 11:01:53 -0700 Subject: [PATCH] Just expose the sonarqube variables as plaintext, as they are not secrets. --- .github/workflows/app-react.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/app-react.yml b/.github/workflows/app-react.yml index 4060d46777..87453e04f3 100644 --- a/.github/workflows/app-react.yml +++ b/.github/workflows/app-react.yml @@ -73,14 +73,14 @@ jobs: uses: sonarsource/sonarqube-scan-action@master env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ vars.SONAR_URL }} - PROJECT_KEY: ${{vars.PROJECT_KEY_APP}} + SONAR_HOST_URL: https://sonarqube-3cd915-tools.apps.silver.devops.gov.bc.ca/ + PROJECT_KEY: 21faa627-fe70-4a67-89e3-1262a32d2e2c PROJECT_NAME: PIMS-APP with: projectBaseDir: ${{env.working-directory}} args: > - -Dsonar.projectKey=${{vars.PROJECT_KEY_APP}} - -Dsonar.projectName=${{vars.PROJECT_NAME}} + -Dsonar.projectKey=21faa627-fe70-4a67-89e3-1262a32d2e2c + -Dsonar.projectName=PIMS-APP -Dsonar.qualitygate.wait=true # Send notifications only if MS_TEAMS_NOTIFY_URL secret has been set