Skip to content

Commit 917438a

Browse files
authored
fix: stop cancelling Pages deploys, which blocks the deployment queue (#51)
1 parent 6f775c4 commit 917438a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ permissions:
1212

1313
concurrency:
1414
group: pages
15-
cancel-in-progress: true
15+
# Never cancel a deploy in flight. Cancelling the *run* does not cancel the Pages
16+
# *deployment* it already queued, and that orphan blocks the queue: every later run then
17+
# sits in `deployment_queued` until it times out. Three merges in quick succession did
18+
# exactly that on 2026-08-06 and the site stayed on the previous bundle for an hour.
19+
cancel-in-progress: false
1620

1721
jobs:
1822
build-and-deploy:

0 commit comments

Comments
 (0)