diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-04-07 16:53:10 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-07 16:53:10 +0900 |
| commit | 558f4e6b286c7eb1072e159b83f9b9906a15172b (patch) | |
| tree | 9405ca3ccf9f44dddb91541f5aa6c22b745e586a /.github/workflows | |
| parent | c565251f7c726f22c0c4079669d4f6d7109293c6 (diff) | |
| parent | 4eaaf704f8f4e4061fb7b765fb7a8696eff0c410 (diff) | |
| download | LunaticChat-558f4e6b286c7eb1072e159b83f9b9906a15172b.tar.gz LunaticChat-558f4e6b286c7eb1072e159b83f9b9906a15172b.tar.bz2 LunaticChat-558f4e6b286c7eb1072e159b83f9b9906a15172b.zip | |
Merge pull request #177 from m1sk9/fix/cloudflare-worker-deploy-cancel
ci(docs): add path filter and prevent mid-deploy cancellation
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docs.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
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: |
