All workflows are located in .github/workflows/. Every workflow is a reusable workflow_call workflow, meaning it is designed to be called from a parent workflow — typically backend_workflow.yml or frontend_workflow.yml.
🔗 Orchestration Workflows
These are the entry points that chain all individual workflows together.
Workflow
Description
backend_workflow.yml
🏗️ Master pipeline for Java/Maven backends — runs checkstyle, secret scan, OWASP check, unit tests, Trivy scan, semantic release, Docker build/push to ECR, and infrastructure update
frontend_workflow.yml
🎨 Master pipeline for Node/pnpm frontends — runs secret scan, npm audit, Trivy scan, unit tests, semantic release, S3 deploy, and main→develop merge
Workflow
Description
gitleaks.yml
🔑 Scans the codebase and PRs for accidentally committed secrets using Gitleaks; posts findings as PR comments via GitHub App
trivy_scan.yml
🛡️ Runs a Trivy filesystem scan for HIGH/CRITICAL vulnerabilities and credential leaks
frontend_npm_audit.yml
📦 Runs pnpm audit on production dependencies to detect high and critical severity vulnerabilities
backend_owasp_dependency_check.yml
🛡️ Runs OWASP Dependency Check against Maven dependencies using the NIST vulnerability database
Workflow
Description
semantic_release.yml
🏷️ Automatically creates releases and version tags from semantic commit messages (fix/feat/BREAKING) — fully automated, no manual step required
release-please.yml
🔀 Alternative to semantic release — creates release PRs based on conventional commits, allowing manual review before the release is published
Workflow
Description
backend_build_push_image.yml
🐳 Builds the Java backend with Maven, packages it into a multi-platform Docker image (amd64 + arm64), and pushes it to AWS ECR
frontend_build_deploy_s3.yml
☁️ Builds the Node frontend with pnpm and deploys it to an S3 bucket, then invalidates the CloudFront cache
update_infrastructure.yml
🔧 Updates terraform.auto.tfvars.json with the new Docker image tag in a separate infrastructure repository and opens a PR for review
Workflow
Description
merge_main_develop.yml
🔀 Fast-forward merges main into develop after a release to keep the development branch in sync with production
trigger_scan_and_release.yml
🔁 Used by this repository itself — runs Gitleaks on the workflows codebase and uses release-please to manage releases on push/PR to main