From 5bd41fae995ba322f0cd781e09f69943bcac7093 Mon Sep 17 00:00:00 2001 From: Phil Lee Date: Tue, 29 Nov 2022 13:39:32 +0000 Subject: [PATCH] bind S3 buckets for review apps (#1037) --- .github/workflows/review_pipeline.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/review_pipeline.yml b/.github/workflows/review_pipeline.yml index 22f99afde..603a8315c 100644 --- a/.github/workflows/review_pipeline.yml +++ b/.github/workflows/review_pipeline.yml @@ -145,6 +145,14 @@ jobs: run: | cf bind-service $APP_NAME $SERVICE_NAME --wait + - name: Bind S3 buckets services + env: + APP_NAME: dluhc-core-review-${{ github.event.pull_request.number }} + run: | + cf bind-service $APP_NAME dluhc-core-review-csv-bucket --wait + cf bind-service $APP_NAME dluhc-core-review-export-bucket --wait + cf bind-service $APP_NAME dluhc-core-review-import-bucket --wait + - name: Start review app env: APP_NAME: dluhc-core-review-${{ github.event.pull_request.number }}