From 58de50b12b0a66dc09e244c0a1046a97a5a0a2b4 Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Thu, 9 Jul 2026 19:52:01 -0300 Subject: [PATCH] ci(preview): stop waiting for Pages deployment after preview push The pr-preview-action was pushing all files successfully to LibreSign/site-preview but then blocking for 180s waiting for a GitHub Pages build in that repository to start, which timed out every run. The deploy already completed; there is no need to block the workflow waiting for the Pages CDN to propagate. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- .github/workflows/preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index e12b0735..34687b85 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -41,6 +41,6 @@ jobs: pages-base-url: libresign.github.io/site-preview deploy-repository: LibreSign/site-preview preview-branch: main - wait-for-pages-deployment: true + wait-for-pages-deployment: false token: ${{ secrets.PREVIEW_TOKEN }} comment: ${{ github.event.pull_request.user.type != 'Bot' }}