From 32860ce86438f4858ac5e237fbe2d6da86a28600 Mon Sep 17 00:00:00 2001 From: Dimitrie Hoekstra Date: Mon, 3 Aug 2026 17:17:57 +0200 Subject: [PATCH] Let docs publish run while the checks are disabled A skipped job skips whatever needs it, so disabling test and test-with-website also stopped publish, and merging a docs change no longer triggered a website rebuild. Docs have been reaching production only on the website's own build schedule since. Dropping the needs restores the trigger. It goes back when the two checks do. --- .github/workflows/docs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c0af0c96bf..b00823c443 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -77,9 +77,9 @@ jobs: publish: if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest - needs: - - test - - test-with-website + # Deliberately gated on nothing while `test` and `test-with-website` are disabled: + # a skipped job skips whatever needs it, which is why merging a docs change stopped + # triggering a website rebuild. Restore the `needs` when those two come back. name: Publish Documentation steps: - name: Generate token