From 09ad379e7a1aa72bda275fe93f6cd92f355045ff Mon Sep 17 00:00:00 2001 From: Morten Brekkevold Date: Fri, 15 Dec 2023 09:44:28 +0100 Subject: [PATCH] Publish test results even when branch is on origin Can't remember why this restriction was put in there, but it seems it prevents test results from being published when PR's repo is the same as the origin. Also don't understand or remember why the dependabot restriction is in here. Removing that too. --- .github/workflows/publish-test-results.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/publish-test-results.yml b/.github/workflows/publish-test-results.yml index ac897d86ae..da798e1b9d 100644 --- a/.github/workflows/publish-test-results.yml +++ b/.github/workflows/publish-test-results.yml @@ -11,10 +11,7 @@ jobs: name: "Publish test results" runs-on: ubuntu-latest if: > - github.event.workflow_run.conclusion != 'skipped' && ( - github.event.sender.login == 'dependabot[bot]' || - github.event.workflow_run.head_repository.full_name != github.repository - ) + github.event.workflow_run.conclusion != 'skipped' steps: - name: Download and Extract Artifacts