From cac8788aa38d56e360e284113867b5cc7bfcfc43 Mon Sep 17 00:00:00 2001 From: Sho Sakuma Date: Tue, 7 Apr 2026 16:48:29 +0900 Subject: ci(docs): add path filter and prevent mid-deploy cancellation - Trigger only on website/ and workflow file changes to avoid unnecessary redeploys from unrelated pushes (e.g. Renovate) - Set cancel-in-progress to false to prevent wrangler deploy from being interrupted, which left the site stuck on "Deploying..." Co-Authored-By: Claude --- .github/workflows/docs.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index fb7809d..d9679ad 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -4,6 +4,9 @@ on: push: branches: - main + paths: + - "website/**" + - ".github/workflows/docs.yaml" workflow_dispatch: jobs: @@ -11,7 +14,7 @@ jobs: runs-on: ubuntu-24.04 concurrency: group: docs-${{ github.ref }} - cancel-in-progress: true + cancel-in-progress: false permissions: contents: read defaults: -- cgit v1.2.1