From 7ea2c9eca434027c87c153782dc3ef9c9a74fa6d Mon Sep 17 00:00:00 2001 From: Derek Roberts Date: Mon, 19 Aug 2024 19:56:16 -0400 Subject: [PATCH] chore(ci): TEST_MODE=true for PRs only (#1531) --- .github/workflows/.deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/.deploy.yml b/.github/workflows/.deploy.yml index 04ac28b6d..4b03e17ce 100644 --- a/.github/workflows/.deploy.yml +++ b/.github/workflows/.deploy.yml @@ -176,7 +176,8 @@ jobs: parameters: -p TAG=${{ inputs.tag }} -p ZONE=${{ inputs.target }} - ${{ inputs.target == 'test' && '-p TEST_MODE=false' || '-p TEST_MODE=true' }} + ${{ github.event_name == 'pull_request' && '-p TEST_MODE=true' || '' }} + - name: Override OpenShift version if: github.event_name == 'pull_request'