From 0f7d75e2e2ff668a40acd9af373ae533ff5043a5 Mon Sep 17 00:00:00 2001 From: ailuckly Date: Tue, 5 May 2026 15:50:51 +0800 Subject: [PATCH] fix(ci): queue staging deployments Do not cancel an in-progress staging deployment when a newer develop push or manual rerun starts. This prevents GitHub Actions from terminating long remote Docker/Maven builds with 'The operation was canceled'. Verification: git diff --check; ruby YAML.load_file('.github/workflows/cd-staging.yml') --- .github/workflows/cd-staging.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd-staging.yml b/.github/workflows/cd-staging.yml index cb2db45..4a6c025 100644 --- a/.github/workflows/cd-staging.yml +++ b/.github/workflows/cd-staging.yml @@ -10,7 +10,7 @@ permissions: concurrency: group: staging-deploy - cancel-in-progress: true + cancel-in-progress: false jobs: deploy-staging: