fix(ci): drop concurrency blocks from deploy workflows (MokoGIT run-creation bug) #22

Merged
jmiller merged 1 commits from fix/remove-deploy-concurrency into main 2026-07-18 20:22:03 +00:00
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -30,9 +30,9 @@ on:
# Runs on the ref it is dispatched from.
workflow_dispatch:
concurrency:
group: deploy-dev
cancel-in-progress: true
# No `concurrency:` block: it triggers a MokoGIT Actions run-creation bug that
# silently drops deploys on rapid pushes to the branch. Do not re-add until the
# upstream bug is confirmed fixed.
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
+3 -3
View File
@@ -30,9 +30,9 @@ on:
# Runs on the ref it is dispatched from (use main).
workflow_dispatch:
concurrency:
group: deploy-prod
cancel-in-progress: false
# No `concurrency:` block: it triggers a MokoGIT Actions run-creation bug that
# silently drops deploys on rapid pushes to the branch. Do not re-add until the
# upstream bug is confirmed fixed.
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
+3 -3
View File
@@ -32,9 +32,9 @@ on:
# newer DB. Dispatch from `rc` once `rc` is current.
workflow_dispatch:
concurrency:
group: deploy-rc
cancel-in-progress: true
# No `concurrency:` block: it triggers a MokoGIT Actions run-creation bug that
# silently drops deploys on rapid pushes to the branch. Do not re-add until the
# upstream bug is confirmed fixed.
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true