From a571106f0fdc2cbc8206de84c71df42a4ffbe770 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 2 Jun 2023 12:30:41 +0200 Subject: [PATCH 1/3] Update contributing.md Signed-off-by: James Cole --- .github/contributing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/contributing.md b/.github/contributing.md index 0830716c91..95080457fb 100644 --- a/.github/contributing.md +++ b/.github/contributing.md @@ -1,3 +1,3 @@ -# [Contributing guidelines](https://docs.firefly-iii.org/other-pages/contributing) +# [Contributing guidelines](https://docs.firefly-iii.org/firefly-iii/support/#contributing-code) -[Contributing guidelines](https://docs.firefly-iii.org/other-pages/contributing) \ No newline at end of file +[Contributing guidelines](https://docs.firefly-iii.org/firefly-iii/support/#contributing-code) From 9473fb849a2e47c21f0a9eeb4593e1ccfa075b9e Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 3 Jun 2023 05:52:17 +0200 Subject: [PATCH 2/3] Delete sonarcloud.yaml Signed-off-by: James Cole --- .github/workflows/sonarcloud.yaml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/sonarcloud.yaml diff --git a/.github/workflows/sonarcloud.yaml b/.github/workflows/sonarcloud.yaml deleted file mode 100644 index 5e6bc93605..0000000000 --- a/.github/workflows/sonarcloud.yaml +++ /dev/null @@ -1,21 +0,0 @@ -name: Sonarcloud -on: - push: - branches: - - main - - develop - 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.GH_ACTIONS_PERSONAL_ACCESS_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From 346289fdb2c171198b8597e90e4aac299278ac51 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 3 Jun 2023 05:52:50 +0200 Subject: [PATCH 3/3] Create sonarcloud.yml Signed-off-by: James Cole --- .github/workflows/sonarcloud.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/sonarcloud.yml diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml new file mode 100644 index 0000000000..a1a34fa24f --- /dev/null +++ b/.github/workflows/sonarcloud.yml @@ -0,0 +1,19 @@ +name: Sonarcloud +on: + push: + branches: + - main + - develop +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.GH_ACTIONS_PERSONAL_ACCESS_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}