From 84306b08c1edfb16eba149e74e34fb9238ed3761 Mon Sep 17 00:00:00 2001 From: Lucas Draney <107153866+ldraney@users.noreply.github.com> Date: Tue, 21 Mar 2023 07:00:14 -0600 Subject: [PATCH] Remove User Flows for Perf Deploy (#1144) * updated workflows, will try to deploy * [skip ci] why is userflows running at all? * [skip ci] trying if dev is not a string * [skip ci] trying syntax suggestion on https://docs.github.com/en/actions/learn-github-actions/expressions * [skip ci] trying if dev is not a string * [skip ci] trying syntax suggestion on https://docs.github.com/en/actions/learn-github-actions/expressions * [skip ci] updated user flows * [skip ci] purposeful breaking change * running tests * [skip ci] pizza cache * removed pizza cache --- .github/workflows/dev_deploy.yml | 2 +- .github/workflows/user_flows.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index a10bb35239..76e7051bd9 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -68,7 +68,7 @@ jobs: run-user-flows: needs: [run-deployment] - if: ${{ inputs.environment }} == "dev" + if: ${{ inputs.environment == 'dev' }} uses: ./.github/workflows/user_flows.yml with: environment: "${{ inputs.environment }}" diff --git a/.github/workflows/user_flows.yml b/.github/workflows/user_flows.yml index 8f8a210642..d4f6f67545 100644 --- a/.github/workflows/user_flows.yml +++ b/.github/workflows/user_flows.yml @@ -9,7 +9,7 @@ on: jobs: run-user-flows: runs-on: ubuntu-latest - if: ${{ inputs.environment }} == "dev" + if: ${{ inputs.environment == 'dev' }} steps: - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1.7.0