1 parent 6f775c4 commit 917438aCopy full SHA for 917438a
1 file changed
.github/workflows/deploy.yml
@@ -12,7 +12,11 @@ permissions:
12
13
concurrency:
14
group: pages
15
- cancel-in-progress: true
+ # 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
20
21
jobs:
22
build-and-deploy:
0 commit comments