We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50865e2 commit abd2530Copy full SHA for abd2530
.github/workflows/deploy-to-control-plane-review-app.yml
@@ -111,13 +111,11 @@ jobs:
111
fi
112
113
# Check if app exists and save state
114
- if ! cpflow exists -a ${{ env.APP_NAME }}; then
+ if cpflow exists -a ${{ env.APP_NAME }}; then
115
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
116
- exit 0
+ echo "Canceling job as review app has not been previously deployed."; sleep inf
117
118
echo "APP_EXISTS=false" >> $GITHUB_ENV
119
- else
120
- echo "APP_EXISTS=true" >> $GITHUB_ENV
121
122
123
- name: Validate Deployment Request
0 commit comments