From a7297a18bf0b7c0e8aa7c58d4be5c9b60a813096 Mon Sep 17 00:00:00 2001 From: Matthias Schuhmayer <38959016+mattamon@users.noreply.github.com> Date: Wed, 22 May 2024 17:22:36 +0200 Subject: [PATCH] [Task] Add public workflows (#70) * Add sonarcloud * Update sonar properties * Update projectName --- .github/workflows/sonar.yaml | 20 ++++++++++++++++++++ sonar-project.properties | 15 +++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .github/workflows/sonar.yaml create mode 100644 sonar-project.properties diff --git a/.github/workflows/sonar.yaml b/.github/workflows/sonar.yaml new file mode 100644 index 000000000..c2a19ab31 --- /dev/null +++ b/.github/workflows/sonar.yaml @@ -0,0 +1,20 @@ +name: Build +on: + push: + branches: + - 1.x + pull_request: + types: [opened, synchronize, reopened] +jobs: + sonarcloud: + name: SonarCloud + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: SonarCloud Scan + uses: SonarSource/sonarcloud-github-action@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 000000000..297956b80 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,15 @@ +sonar.projectKey=pimcore_studio-backend-bundle +sonar.organization=pimcore + +# This is the name and version displayed in the SonarCloud UI. +#sonar.projectName=studio-backend-bundle +#sonar.projectVersion=1.0 + + +# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. +#sonar.sources=. + +sonar.exclusions=**/vendor/**,**/doc/**,**/tests/**,**/config/**,**/.docker/** + +# Encoding of the source code. Default is default system encoding +#sonar.sourceEncoding=UTF-8 \ No newline at end of file