Template
ci(deploy): drop concurrency blocks so MokoGIT can create deploy runs #18
@@ -30,9 +30,13 @@ on:
|
||||
# Runs on the ref it is dispatched from.
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: deploy-dev
|
||||
cancel-in-progress: true
|
||||
# NOTE: no `concurrency:` block. MokoGIT (the Gitea fork these repos run on) fails
|
||||
# to CREATE a run for any workflow that declares concurrency — push AND
|
||||
# workflow_dispatch return 204 but create nothing. Verified empirically across
|
||||
# repos: commits WITH a concurrency block produced zero deploy runs; without one
|
||||
# they ran normally (a fresh group name did not help). Keep this omitted until the
|
||||
# MokoGIT concurrency bug is fixed, otherwise every synced repo's deploys silently
|
||||
# stop firing.
|
||||
|
||||
env:
|
||||
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||
|
||||
@@ -30,9 +30,13 @@ on:
|
||||
# Runs on the ref it is dispatched from (use main).
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: deploy-prod
|
||||
cancel-in-progress: false
|
||||
# NOTE: no `concurrency:` block. MokoGIT (the Gitea fork these repos run on) fails
|
||||
# to CREATE a run for any workflow that declares concurrency — push AND
|
||||
# workflow_dispatch return 204 but create nothing. Verified empirically across
|
||||
# repos: commits WITH a concurrency block produced zero deploy runs; without one
|
||||
# they ran normally (a fresh group name did not help). Keep this omitted until the
|
||||
# MokoGIT concurrency bug is fixed, otherwise every synced repo's deploys silently
|
||||
# stop firing.
|
||||
|
||||
env:
|
||||
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||
|
||||
@@ -32,9 +32,13 @@ on:
|
||||
# newer DB. Dispatch from `rc` once `rc` is current.
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: deploy-rc
|
||||
cancel-in-progress: true
|
||||
# NOTE: no `concurrency:` block. MokoGIT (the Gitea fork these repos run on) fails
|
||||
# to CREATE a run for any workflow that declares concurrency — push AND
|
||||
# workflow_dispatch return 204 but create nothing. Verified empirically across
|
||||
# repos: commits WITH a concurrency block produced zero deploy runs; without one
|
||||
# they ran normally (a fresh group name did not help). Keep this omitted until the
|
||||
# MokoGIT concurrency bug is fixed, otherwise every synced repo's deploys silently
|
||||
# stop firing.
|
||||
|
||||
env:
|
||||
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||
|
||||
Reference in New Issue
Block a user