From 2b9651277c91a3fc5261bbcd35f69aae144e970d Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 1 Jul 2025 16:01:18 -0700 Subject: [PATCH] fix: trigger staging deploy on push to staging and after auto-promotion --- .github/workflows/deploy-staging.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index 406604d..42802de 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -1,6 +1,8 @@ name: Deploy to Staging on: + push: + branches: [ staging ] workflow_dispatch: inputs: image_tag: @@ -8,10 +10,10 @@ on: required: false default: 'latest' workflow_run: - workflows: ["Deploy to Development"] + workflows: ["Auto-Promote Pipeline"] types: - completed - branches: [ main, master ] + branches: [ staging ] env: REGISTRY: ghcr.io