From f6fa017f41b148011eea20305cbe0a4aa4abf26c Mon Sep 17 00:00:00 2001 From: Phil Lee Date: Mon, 12 Dec 2022 12:21:52 +0000 Subject: [PATCH] remove rolling deployment from review apps - the following error seems to occur fairly frequently ``` Cannot cancel a deployment with status: FINALIZED and reason: DEGENERATE ``` - removing rolling deployments to see if this can resolve that - I don't feel rolling deployments will be missed from review apps --- .github/workflows/review_pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/review_pipeline.yml b/.github/workflows/review_pipeline.yml index 52c055360..1c7beff53 100644 --- a/.github/workflows/review_pipeline.yml +++ b/.github/workflows/review_pipeline.yml @@ -157,7 +157,7 @@ jobs: env: APP_NAME: dluhc-core-review-${{ github.event.pull_request.number }} run: | - cf restage $APP_NAME --strategy rolling + cf restage $APP_NAME - name: Comment on PR with URL uses: unsplash/comment-on-pr@v1.3.0