From 70d68b9c62bb5e88cde69bdc22e9a51c77d4d3b7 Mon Sep 17 00:00:00 2001 From: radu-mocanu Date: Mon, 11 May 2026 15:11:50 +0300 Subject: [PATCH] fix(ci): run sonarcloud scan on push to main too --- .github/workflows/test-packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-packages.yml b/.github/workflows/test-packages.yml index 8ee6b5120..5bc300c2f 100644 --- a/.github/workflows/test-packages.yml +++ b/.github/workflows/test-packages.yml @@ -301,7 +301,7 @@ jobs: name: SonarCloud needs: [test-uipath-core, test-uipath-platform, test-uipath] runs-on: ubuntu-latest - if: github.event_name == 'pull_request' && always() && needs.test-uipath-core.result != 'failure' && needs.test-uipath-platform.result != 'failure' && needs.test-uipath.result != 'failure' + if: always() && needs.test-uipath-core.result != 'failure' && needs.test-uipath-platform.result != 'failure' && needs.test-uipath.result != 'failure' steps: - name: Checkout uses: actions/checkout@v4