From c789087487eee6ed7eaa04393e54fbb973867614 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 3 Mar 2026 14:09:02 -0600 Subject: [PATCH] Add tests_check job for branch protection Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db9a947..320d0d2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -139,3 +139,21 @@ jobs: - uses: actions/checkout@v6 - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 - uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1 + + tests_check: # This job does nothing and is only used for the branch protection + if: always() + needs: + - test-linux + - test-macos + - test-flatpak + - make_sdist + - test_sdist + - static + - check_release + - link_check + runs-on: ubuntu-latest + steps: + - name: Decide whether the needed jobs succeeded or failed + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }}