From ecd31677ce417226849efc730113dec47e86aedc Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sun, 3 Jul 2022 22:43:38 +0700 Subject: [PATCH] chore: remove sonar --- .github/workflows/go.yaml | 4 ---- README.md | 1 - sonar-project.properties | 11 ----------- 3 files changed, 16 deletions(-) delete mode 100644 sonar-project.properties diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 35937e7..b530124 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -23,10 +23,6 @@ jobs: - uses: codecov/codecov-action@v2 with: files: coverage.out - - uses: SonarSource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} build: name: Build runs-on: ${{ matrix.os }} diff --git a/README.md b/README.md index 0a01ad5..17151ab 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [![Go](https://github.com/haunt98/changeloguru/workflows/Go/badge.svg?branch=main)](https://github.com/haunt98/changeloguru/actions) [![Go Reference](https://pkg.go.dev/badge/github.com/haunt98/changeloguru.svg)](https://pkg.go.dev/github.com/haunt98/changeloguru) [![codecov](https://codecov.io/gh/haunt98/changeloguru/branch/main/graph/badge.svg?token=ZBG353F0CN)](https://codecov.io/gh/haunt98/changeloguru) -[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=haunt98_changeloguru&metric=alert_status)](https://sonarcloud.io/dashboard?id=haunt98_changeloguru) Tool to generate `CHANGELOG.md`, `CHANGELOG.rst` from [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). diff --git a/sonar-project.properties b/sonar-project.properties deleted file mode 100644 index 02a4ce1..0000000 --- a/sonar-project.properties +++ /dev/null @@ -1,11 +0,0 @@ -sonar.organization=haunt98 -sonar.projectKey=haunt98_changeloguru -sonar.projectName=changeloguru - -sonar.sources=. -sonar.exclusions=**/*_test.go,**/main.go,**/cli/** - -sonar.tests=. -sonar.test.inclusions=**/*_test.go - -sonar.go.coverage.reportPaths=coverage.out