From ad06dcf7c87f56097da7d0fd6f0f37824cfc70b1 Mon Sep 17 00:00:00 2001 From: Jonathan Williams Date: Fri, 7 Aug 2026 09:17:03 -0400 Subject: [PATCH] :wrench: enable manual cicd workflow dispatch This allows the CI/CD workflow to be triggered manually from the GitHub Actions UI, providing greater flexibility for testing and re-runs without requiring a new commit. --- .github/workflows/cicd.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 30969dd..87bafa1 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------------------------------------- # # This is the production continuous integration build github action. -# Activates on any commit to the main branch. +# Activates on any commit to the main branch, or manually from the Actions tab. # # ---------------------------------------------------------------------------------------------------------- @@ -12,6 +12,7 @@ push: branches: - main + workflow_dispatch: env: AWS_REGION: us-east-1