From d7b1f0197d3fee6ba55cf10057208c2e070ce1cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Breu=C3=9F=20Valentin?= Date: Fri, 19 Sep 2025 13:34:10 +0200 Subject: [PATCH] fix: run static code analyis only from this repo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0e694216..defae48c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,7 +118,7 @@ jobs: static-code-analysis: name: "Static code analysis" - if: ${{ github.actor == 'vbreuss' }} + if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} runs-on: ubuntu-latest env: REPORTGENERATOR_LICENSE: ${{ secrets.REPORTGENERATOR_LICENSE }}