From b193a4bb3a00f6556bfdcf4199b4461ea3f1aab2 Mon Sep 17 00:00:00 2001 From: edwin-focaloid Date: Thu, 19 Oct 2023 12:13:39 +0530 Subject: [PATCH] feat: adding github action for sonar and added sonar property file --- .github/workflows/sonar.yml | 41 +++++++++++++++++++++++++++++++++++++ sonar-project.properties | 1 + 2 files changed, 42 insertions(+) create mode 100644 .github/workflows/sonar.yml create mode 100644 sonar-project.properties diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml new file mode 100644 index 0000000..1a7a478 --- /dev/null +++ b/.github/workflows/sonar.yml @@ -0,0 +1,41 @@ +name: Sonarqube_CI +on: + + push: + branches: + - master + - main + - develop + + pull_request: + types: [opened, synchronize, reopened] + branches: + - '**' + workflow_dispatch: + +jobs: + build: + name: Sonarqube_CI + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Sonarqube scan + uses: sonarsource/sonarqube-scan-action@master + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + + # Job will fail when the Quality Gate is red + - name: Sonarqube quality gate check + id: sonarqube-quality-gate-check + uses: sonarsource/sonarqube-quality-gate-action@master + timeout-minutes: 5 + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + + + - name: "Example show SonarQube Quality Gate Status value" + run: echo "The Quality Gate status is ${{ steps.sonarqube-quality-gate-check.outputs.quality-gate-status }}" diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000..d6a9257 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1 @@ +sonar.projectKey=imsglobal-lti