From a057bbef21d3550c4e872f5daf7efd007502449f Mon Sep 17 00:00:00 2001 From: Paillat-dev Date: Wed, 19 Nov 2025 17:22:07 +0100 Subject: [PATCH] :green_heart: Ensure tests-pass check is always run except on scheduled events Signed-off-by: Paillat-dev --- .github/workflows/lib-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lib-checks.yml b/.github/workflows/lib-checks.yml index 503a9fb78c..d3ce647455 100644 --- a/.github/workflows/lib-checks.yml +++ b/.github/workflows/lib-checks.yml @@ -118,7 +118,7 @@ jobs: tests-pass: # ref: https://github.com/orgs/community/discussions/4324#discussioncomment-3477871 runs-on: ubuntu-latest needs: [tests] - if: ${{ github.event_name != 'schedule' }} + if: always() && github.event_name != 'schedule' steps: - name: Tests succeeded if: ${{ !(contains(needs.*.result, 'failure')) }}