From 57d55486c6ca166bdf164dfeec23c1d0047e604c Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 26 Jan 2026 11:37:52 -0500 Subject: [PATCH] fix: docs workflow cleanup and prevent cancellations - Remove unnecessary push trigger from pr-website-preview.yml The push trigger was running on every push to every branch but doing nothing useful (deploy step was skipped due to missing PR context). The pull_request trigger with 'synchronize' already handles PR updates. - Add cancel-in-progress: false to pr-website-preview.yml This prevents cleanup jobs from being cancelled when they run concurrently with deploy jobs, which was causing PR previews to accumulate and fill up disk space. --- .github/workflows/pr-website-preview.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-website-preview.yml b/.github/workflows/pr-website-preview.yml index f93032a44c6a..7117a51fd972 100644 --- a/.github/workflows/pr-website-preview.yml +++ b/.github/workflows/pr-website-preview.yml @@ -9,11 +9,10 @@ on: - closed paths: - 'documentation/**' - push: - branches-ignore: - - 'dependabot/**' -concurrency: pr-preview +concurrency: + group: pr-preview + cancel-in-progress: false jobs: deploy: