Naming conventions for GitHub Actions:
workflow-*.yml
: Reusable workflowsci-cd-*.yml
: Workflows that are triggered by an eventdispatch-*.yml
: Workflows that are dispatchable
-
Development
- Create feature branch from
main
- Follow branch naming convention:
(feat|fix|docs|test|ci|chore|trivial)!?(\\(.*\\))?!?:.*
- Create PR against
main
- PR title must follow conventional commits format (validated by
ci-cd-pull-request-title.yml
) - Get code review and approval
- Merge to
main
- Create feature branch from
-
Main Branch Triggers
When code is merged tomain
, two parallel workflows are triggered:a. CI/CD Main (
ci-cd-main.yml
)- Automatically deploys to Test environment
- Runs full deployment including:
- Infrastructure if changed
- Applications if changed
- Runs tests
- Updates dependencies
b. Release Please (
ci-cd-release-please.yml
)- Checks if changes warrant a new release
- Either:
- Creates/updates release PR, or
- Builds and publishes Docker images if release is complete
Three parallel workflows are triggered:
-
Production Dry Run (
ci-cd-prod-dry-run.yml
)- Validates production deployment configuration
- No actual deployment
- Early warning for potential production issues
-
Staging Deployment (
ci-cd-staging.yml
)- Deploys to staging (tt02) environment
- Full deployment including:
- Infrastructure updates
- Application deployment
- Database migrations
- SDK publishing
- End-to-end testing
-
YT01 Deployment (
ci-cd-yt01.yml
)- Deploys to YT01 environment
- Performance testing environment
- Full deployment similar to staging
- Manual Trigger Required (
ci-cd-prod.yml
) - Requires specific version input
- Full deployment process:
- Version verification
- Infrastructure deployment
- Application deployment
- SDK publishing
- Version tracking updates
Development → Main Branch → Test → [YT01 + Staging] → Production
↑ ↑ ↑
Auto deploy Auto deploy Manual deploy
on merge on release with version
- Test: Automatic deployment target for all changes merged to main
- YT01: Performance test environment, automatically updated with releases
- Staging (tt02): Pre-production verification, automatically updated with releases
- Production: Production environment, requires manual deployment trigger
Available manual workflows for all environments:
dispatch-infrastructure.yml
: Infrastructure deploymentdispatch-apps.yml
: Application deploymentdispatch-k6-tests.yml
: Functional testingdispatch-k6-performance.yml
: Performance testingdispatch-k6-breakpoint.yml
: Breakpoint testing
The dispatch-apps.yml
workflow is responsible for deploying applications. To trigger this workflow:
- Navigate to the Actions tab in the GitHub repository.
- Select the
Dispatch Apps
workflow. - Click on "Run workflow".
- Fill in the required inputs:
- environment: Choose the target environment (
test
,yt01
,staging
, orprod
). - version: Specify the version to deploy. Could be git tag or a docker-tag published in packages.
- runMigration (optional): Indicate whether to run database migrations (
true
orfalse
).
- environment: Choose the target environment (
This workflow will handle the deployment of applications based on the specified parameters, ensuring that the correct version is deployed to the chosen environment.
The dispatch-infrastructure.yml
workflow is used for deploying infrastructure components. To use this workflow:
- Go to the Actions tab in the GitHub repository.
- Select the
Dispatch Infrastructure
workflow. - Click on "Run workflow".
- Provide the necessary inputs:
- environment: Select the environment you wish to deploy to (
test
,yt01
,staging
, orprod
). - version: Enter the version to deploy, which should correspond to a git tag. (e.g.,
1.23.4
).
- environment: Select the environment you wish to deploy to (
This workflow facilitates the deployment of infrastructure to the specified environment, using the version details provided.
- Release-please manages versioning based on conventional commits
- Versions are tracked in GitHub environment variables
- Separate tracking for infrastructure and applications
- Docker images tagged with release versions
- SDK and schema packages versioned with releases
Release Please is used to create releases, generate changelog and bumping version numbers.
CHANGELOG.md
and version.txt
are automatically updated and should not be changed manually.
- GitHub environment variables store the latest deployed versions for each environment
- Separate tracking for:
- Infrastructure version (
LATEST_DEPLOYED_INFRA_VERSION
) - Applications version (
LATEST_DEPLOYED_APPS_VERSION
)
- Infrastructure version (
- This enables accurate detection of what needs to be deployed in each environment
-
Version Comparison
- Retrieves latest deployed versions from GitHub environment variables
- Compares current deployment version with last deployed version
- Uses git commit SHAs to determine exact changes between versions
-
Change Categories Tracked
Changes detected in: - Infrastructure (Azure resources, GitHub workflows) - Backend code - Web API client - Test files - Swagger schema - GraphQL schema - Database migrations - Slack notifier
-
Smart Deployment Decisions
- Only deploys components that have actually changed
- Infrastructure deployment skipped if no infrastructure changes
- App deployment skipped if no application changes
- Migrations run only when database changes exist
- SDK published only on API/schema changes
# Getting latest deployed versions
get-versions-from-github:
name: Get Latest Deployed Version Info from GitHub
uses: ./.github/workflows/workflow-get-latest-deployed-version-info-from-github.yml
with:
environment: prod
secrets:
GH_TOKEN: ${{ secrets.RELEASE_VERSION_STORAGE_PAT }}
# Checking for changes
check-for-changes:
name: Check for changes
needs: [get-versions-from-github]
uses: ./.github/workflows/workflow-check-for-changes.yml
with:
infra_base_sha: ${{ needs.get-versions-from-github.outputs.infra_version_sha }}
apps_base_sha: ${{ needs.get-versions-from-github.outputs.apps_version_sha }}
-
New Release Created (v1.2.3)
Current State: - Production: v1.2.1 - Changes detected: • Infrastructure: No changes • Backend code: Modified • Database: New migration
-
Deployment Process
Actions: - Skip infrastructure deployment - Deploy new application version - Run database migration - Update LATEST_DEPLOYED_APPS_VERSION to v1.2.3
-
After Deployment
New State: - LATEST_DEPLOYED_INFRA_VERSION remains at v1.2.1 - LATEST_DEPLOYED_APPS_VERSION updated to v1.2.3