fix: prevent docs deploy from being cancelled by PR previews (#6553)

This commit is contained in:
Rizel Scarlett
2026-01-17 06:46:10 -05:00
committed by GitHub
parent 7b23c71bfe
commit 3cadb9c5c0
@@ -8,8 +8,12 @@ on:
- 'documentation/**'
# Use same concurrency group as PR preview workflow to prevent race conditions
# when both workflows try to modify gh-pages branch simultaneously
concurrency: pr-preview
# when both workflows try to modify gh-pages branch simultaneously.
# cancel-in-progress: false ensures production deploys queue and wait rather than
# being cancelled by PR preview workflows.
concurrency:
group: pr-preview
cancel-in-progress: false
jobs:
deploy: