From a7ce0ba600a6add6dfc291c03e94be851b2951cd Mon Sep 17 00:00:00 2001 From: SpicyGarlicAlbacoreRoll Date: Wed, 14 May 2025 13:46:55 -0800 Subject: [PATCH 1/2] deploy: add prod-staging workflow to run on pr to prod-staging --- .github/workflows/deploy-prod-staging.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-prod-staging.yml b/.github/workflows/deploy-prod-staging.yml index c6f88f3..e8cfb21 100644 --- a/.github/workflows/deploy-prod-staging.yml +++ b/.github/workflows/deploy-prod-staging.yml @@ -15,7 +15,7 @@ jobs: # Deploy Staging deploy-edc-prod-staging: runs-on: ubuntu-latest - environment: edc-test + environment: edc-prod permissions: id-token: write contents: read @@ -69,7 +69,7 @@ jobs: deploy-prod-staging: runs-on: ubuntu-latest - environment: test + environment: prod permissions: id-token: write contents: read From 75c039ea10caf49571eba8d251dcbcfd4c2d2df7 Mon Sep 17 00:00:00 2001 From: SpicyGarlicAlbacoreRoll Date: Wed, 14 May 2025 13:54:52 -0800 Subject: [PATCH 2/2] change workflow to push instead of PR --- .github/workflows/deploy-prod-staging.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/deploy-prod-staging.yml b/.github/workflows/deploy-prod-staging.yml index e8cfb21..41b888a 100644 --- a/.github/workflows/deploy-prod-staging.yml +++ b/.github/workflows/deploy-prod-staging.yml @@ -2,14 +2,9 @@ name: SearchAPI Integration Deployment and Testing Suite permissions: contents: read on: - pull_request: + push: branches: - prod-staging - types: - - opened - - reopened - - synchronize - jobs: # Deploy Staging