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:07 UTC

[lucenenet] branch ci/sonarcloud created (now 15d417e80)

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

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


      at 15d417e80 sonar.yml: Corrected SonarCloud key

This branch includes the following new commits:

     new e3f822046 Force a scan
     new d9d325aac Updated sonar.yml to use Apache SONARCLOUD_TOKEN
     new b01f4975d Force a scan
     new b56100426 sonar.yml: Use SONARCLOUD_TOKEN secret directly
     new 15d417e80 sonar.yml: Corrected SonarCloud key

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by ni...@apache.org.
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 }}"


[lucenenet] 03/05: Force a scan

Posted by ni...@apache.org.
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 b01f4975d0f96e2c0bc85bb7cdc1032500cf9e6a
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Nov 4 15:11:17 2022 +0700

    Force a scan


[lucenenet] 01/05: Force a scan

Posted by ni...@apache.org.
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 e3f82204632ccd993366b7cea3fbae3d683442c0
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Nov 4 02:07:33 2022 +0700

    Force a scan
---
 ACKNOWLEDGEMENTS.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ACKNOWLEDGEMENTS.txt b/ACKNOWLEDGEMENTS.txt
index 91fd0e2fb..73cddf1fd 100644
--- a/ACKNOWLEDGEMENTS.txt
+++ b/ACKNOWLEDGEMENTS.txt
@@ -9,4 +9,4 @@ The full snowball package is available from http://snowball.tartarus.org/
 Apache Lucene.Net is a port of Jakarta Lucene to C#.  
 The port from Java to C# of versions 1.4.0, 1.4.3, 1.9, 1.9.1, 2.0 and 2.1 were done 
 primarily by George Aroush. To contact George Aroush please visit http://www.aroush.net/.
-Much thanks to George
\ No newline at end of file
+Much thanks to George


[lucenenet] 04/05: sonar.yml: Use SONARCLOUD_TOKEN secret directly

Posted by ni...@apache.org.
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 b561004262aa5982a8c68e1852f1893b9fa52a73
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Nov 4 15:23:44 2022 +0700

    sonar.yml: Use SONARCLOUD_TOKEN secret directly
---
 .github/workflows/sonar.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml
index 48c1fc0bd..d1f4a9985 100644
--- a/.github/workflows/sonar.yml
+++ b/.github/workflows/sonar.yml
@@ -39,9 +39,8 @@ jobs:
       - name: Build and analyze
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}  # Needed to get PR information, if any
-          SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
         shell: powershell
         run: |
-          .\.sonar\scanner\dotnet-sonarscanner begin /k:"apache_lucenenet" /o:"apache" /d:sonar.login="${{ env.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
+          .\.sonar\scanner\dotnet-sonarscanner begin /k:"apache_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="${{ env.SONAR_TOKEN }}"
+          .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONARCLOUD_TOKEN }}"


[lucenenet] 02/05: Updated sonar.yml to use Apache SONARCLOUD_TOKEN

Posted by ni...@apache.org.
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 d9d325aac08cb45829275837069a2d213f572761
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Fri Nov 4 11:41:51 2022 +0700

    Updated sonar.yml to use Apache SONARCLOUD_TOKEN
    
    https://cwiki.apache.org/confluence/display/INFRA/SonarCloud+for+ASF+projects
---
 .github/workflows/sonar.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml
index 7c2eb5f6f..48c1fc0bd 100644
--- a/.github/workflows/sonar.yml
+++ b/.github/workflows/sonar.yml
@@ -39,9 +39,9 @@ jobs:
       - name: Build and analyze
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}  # Needed to get PR information, if any
-          SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
+          SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
         shell: powershell
         run: |
-          .\.sonar\scanner\dotnet-sonarscanner begin /k:"apache_lucenenet" /o:"apache" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
+          .\.sonar\scanner\dotnet-sonarscanner begin /k:"apache_lucenenet" /o:"apache" /d:sonar.login="${{ env.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
           dotnet build
-          .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
\ No newline at end of file
+          .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ env.SONAR_TOKEN }}"