From 2b0f9dd748332ec0e3049d9daaa037f2ae3b503e Mon Sep 17 00:00:00 2001 From: Romain Marcadier Date: Fri, 5 Jul 2024 12:39:18 +0200 Subject: [PATCH] chore: republish docsite on all `main` pushes (#152) Filtering on the `paths` does not work all too well with merge queues, as the filter only looks at the top-most commit being pushed, instead of the superposition of all new commits. --- .github/workflows/docsite.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docsite.yml b/.github/workflows/docsite.yml index 795bbcab..a8915881 100644 --- a/.github/workflows/docsite.yml +++ b/.github/workflows/docsite.yml @@ -8,6 +8,7 @@ on: push: branches: [main] paths: [docs/**] + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.ref }}