From 1c285c3cea7cc7f47321ea7311fa368193e88689 Mon Sep 17 00:00:00 2001 From: Aron Svastits Date: Mon, 8 Apr 2024 19:48:24 +0200 Subject: [PATCH] sonar only for PR --- .github/workflows/industrial_ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/industrial_ci.yml b/.github/workflows/industrial_ci.yml index 1f6f3193..a6ca3a01 100644 --- a/.github/workflows/industrial_ci.yml +++ b/.github/workflows/industrial_ci.yml @@ -53,6 +53,11 @@ jobs: DOCKER_RUN_OPTS: '-e LD_LIBRARY_PATH=/root/.local/lib' runs-on: ubuntu-latest steps: + - name: Reset ANALYZER for scheduled and push runs + run: | + if [[ "${{ github.event_name }}" == "schedule" ]] || [[ "${{ github.event_name }}" == "push" ]]; then + echo "ANALYZER=" >> $GITHUB_ENV + fi - uses: actions/checkout@v2 with: fetch-depth: 0