From d91aa206929e61c133695519170334fa653a772f Mon Sep 17 00:00:00 2001 From: Roman Zabaluev Date: Thu, 15 Feb 2024 16:17:52 +0700 Subject: [PATCH] Fix BE build not running on PRs (!?) since a32272d --- .github/workflows/backend_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backend_tests.yml b/.github/workflows/backend_tests.yml index a86b41421..8a3ffe2d3 100644 --- a/.github/workflows/backend_tests.yml +++ b/.github/workflows/backend_tests.yml @@ -40,7 +40,7 @@ jobs: restore-keys: ${{ runner.os }}-sonar - name: "Pull request: Maven tests & sonar" - if: ${{ inputs.event_name == 'pull_request' }} + if: ${{ inputs.event_name == 'pull_request' || inputs.event_name == 'pull_request_target' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_BACKEND }}