From eaf7fe11edb9ecda8829ec8edb6576edfc81ab39 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Tue, 4 Feb 2025 17:05:44 +0100 Subject: [PATCH] Delete .gitea/workflows/sonarqube.yml --- .gitea/workflows/sonarqube.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .gitea/workflows/sonarqube.yml diff --git a/.gitea/workflows/sonarqube.yml b/.gitea/workflows/sonarqube.yml deleted file mode 100644 index 99e806e..0000000 --- a/.gitea/workflows/sonarqube.yml +++ /dev/null @@ -1,33 +0,0 @@ -on: - push: - branches: - - main - - dev - - "!renovate/**" - pull_request: - types: [opened, synchronize, reopened] - -name: SonarQube Scan -jobs: - sonarqube: - name: SonarQube Trigger - runs-on: ubuntu-latest - steps: - - name: Checking out - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - with: - # Disabling shallow clone is recommended for improving relevancy of reporting - fetch-depth: 0 - - name: SonarQube Scan - uses: SonarSource/sonarqube-scan-action@bfd4e558cda28cda6b5defafb9232d191be8c203 # v4.2.1 - env: - SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }} - SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} - - # Check the Quality Gate status. - - name: SonarQube Quality Gate check - uses: sonarsource/sonarqube-quality-gate-action@master - timeout-minutes: 2 - env: - SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }} - SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}