You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2021/05/25 16:00:10 UTC

[iotdb] 01/01: Revert "Enable sonar-coveralls for pr from fork repos (#3263)"

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

haonan pushed a commit to branch revert-3263-try_sonar
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 3903552d5c236de39785f6716555b5ce6ef9b755
Author: Haonan <hh...@outlook.com>
AuthorDate: Tue May 25 23:59:38 2021 +0800

    Revert "Enable sonar-coveralls for pr from fork repos (#3263)"
    
    This reverts commit aca9faa97cb4d3d485a65a0cd816cf04993aebde.
---
 .github/workflows/sonar-coveralls.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/sonar-coveralls.yml b/.github/workflows/sonar-coveralls.yml
index 68f2705..7f1dcdc 100644
--- a/.github/workflows/sonar-coveralls.yml
+++ b/.github/workflows/sonar-coveralls.yml
@@ -1,7 +1,7 @@
 # This workflow will build a Java project with Maven
 # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
 
-name: Sonar-Coveralls
+name: Sonar-Coveralls(Ignore this on folk Repos)
 
 on:
   push:
@@ -10,7 +10,7 @@ on:
       - "rel/*"
     paths-ignore:
       - "docs/**"
-  pull_request_target:
+  pull_request:
     branches:
       - master
       - "rel/*"
@@ -43,7 +43,7 @@ jobs:
         # we do not compile client-cpp for saving time, it is tested in client.yml
         run: mvn -B clean post-integration-test -Dtest.port.closed=true -Pcode-coverage
       - name: Code Coverage (Coveralls)
-        if: ${{ success() }}
+        if: ${{ success() && (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'apache/iotdb' || github.event_name == 'push') }}
         run: |
           mvn -B post-integration-test -Pcode-coverage -pl code-coverage
           mvn -B coveralls:report \
@@ -53,7 +53,7 @@ jobs:
           -DrepoToken=${{ secrets.COVERALL_TOKEN }} \
           -Pcode-coverage
       - name: SonarCloud Report
-        if: ${{ success() }}
+        if: ${{ success() && (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'apache/iotdb' || github.event_name == 'push') }}
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
           SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}