chore: Phase 4 - Deploy workflow to manual-only mode
Merge to Main - Full Pipeline / Stage 1: Fast Gates (push) Failing after 4s
Merge to Main - Full Pipeline / Stage 2: Critical Gates (push) Has been skipped
Merge to Main - Full Pipeline / Stage 3: Integration Tests (push) Has been skipped
Merge to Main - Full Pipeline / Stage 4: Build and Package (push) Has been skipped
Merge to Main - Full Pipeline / Stage 5: Deploy to Production (push) Has been skipped
Merge to Main - Full Pipeline / Pipeline Summary (push) Successful in 0s

- Removed automatic 'push' trigger from deploy-prod.yml
- Now workflow_dispatch only (manual deployment)
- Automatic deployment handled by merge-to-main.yml (Stage 5)
- Prevents duplicate deployment runs

Benefits:
- Single source of truth for automated deployment (merge-to-main.yml)
- Manual override available via workflow_dispatch
- Cleaner workflow execution on main branch push
- Easier to debug/monitor single deployment process

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-11 20:39:23 +09:00
parent 4023fff0f2
commit ddbeab70c6
+5 -4
View File
@@ -1,11 +1,12 @@
name: Deploy to Production (Local)
name: Deploy to Production (Manual)
on:
push:
branches:
- main
workflow_dispatch:
# Phase 4: Manual-only deployment
# Automatic deployment moved to merge-to-main.yml (Stage 5)
# Use this workflow for manual deployments when needed
concurrency:
group: deploy-prod-main
cancel-in-progress: true