You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2022/11/04 09:06:12 UTC

[lucenenet] 05/05: sonar.yml: Corrected SonarCloud key

This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch ci/sonarcloud
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 15d417e8026386bcafaba82d8626cb307c85ad9c
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Nov 4 16:00:29 2022 +0700

    sonar.yml: Corrected SonarCloud key
---
 .github/workflows/sonar.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml
index d1f4a9985..a0ef085a1 100644
--- a/.github/workflows/sonar.yml
+++ b/.github/workflows/sonar.yml
@@ -41,6 +41,6 @@ jobs:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}  # Needed to get PR information, if any
         shell: powershell
         run: |
-          .\.sonar\scanner\dotnet-sonarscanner begin /k:"apache_lucenenet" /o:"apache" /d:sonar.login="${{ secrets.SONARCLOUD_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
+          .\.sonar\scanner\dotnet-sonarscanner begin /k:"lucenenet" /o:"apache" /d:sonar.login="${{ secrets.SONARCLOUD_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
           dotnet build
           .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONARCLOUD_TOKEN }}"