Merge workflow to production #90

Closed
opened 2026-01-17 21:53:49 +00:00 by lmiranda · 0 comments
Owner

Overview

Execute the complete merge workflow from development through staging to production, verifying CI/CD triggers at each step.

Acceptance Criteria

  • Merge development branch into staging
  • Verify staging CI/CD workflow triggers automatically
  • Confirm staging deployment completes successfully
  • Verify application works on staging environment
  • Merge staging branch into main
  • Verify production CI/CD workflow triggers automatically
  • Confirm production deployment completes successfully
  • Verify application works on production environment

Technical Notes

Merge commands:

# Merge to staging
git checkout staging
git merge development
git push origin staging
# Wait for CI/CD, verify staging

# Merge to production
git checkout main
git merge staging
git push origin main
# Wait for CI/CD, verify production

Verification checklist:

  • Check Gitea Actions for workflow runs
  • SSH to servers to verify deployment
  • Test application endpoints
  • Check logs for errors

Labels

  • Type/Chore
  • Priority/High
  • Complexity/Simple
  • Component/Deploy

Phase: 6 - Production Deploy

## Overview Execute the complete merge workflow from development through staging to production, verifying CI/CD triggers at each step. ## Acceptance Criteria - [ ] Merge `development` branch into `staging` - [ ] Verify staging CI/CD workflow triggers automatically - [ ] Confirm staging deployment completes successfully - [ ] Verify application works on staging environment - [ ] Merge `staging` branch into `main` - [ ] Verify production CI/CD workflow triggers automatically - [ ] Confirm production deployment completes successfully - [ ] Verify application works on production environment ## Technical Notes Merge commands: ```bash # Merge to staging git checkout staging git merge development git push origin staging # Wait for CI/CD, verify staging # Merge to production git checkout main git merge staging git push origin main # Wait for CI/CD, verify production ``` Verification checklist: - Check Gitea Actions for workflow runs - SSH to servers to verify deployment - Test application endpoints - Check logs for errors ## Labels - Type/Chore - Priority/High - Complexity/Simple - Component/Deploy ## Phase: 6 - Production Deploy
Sign in to join this conversation.