diff --git a/.github/workflows/deploy-front-qa.yml b/.github/workflows/deploy-front-qa.yml index c618986909e4..4eb2c1227e17 100644 --- a/.github/workflows/deploy-front-qa.yml +++ b/.github/workflows/deploy-front-qa.yml @@ -23,4 +23,5 @@ jobs: enforce_main: false regions: us-central1 working_dir: ./ + run_playwright_tests: true secrets: inherit diff --git a/.github/workflows/reusable-deploy.yml b/.github/workflows/reusable-deploy.yml index 9127cc674db2..bf3782456bf6 100644 --- a/.github/workflows/reusable-deploy.yml +++ b/.github/workflows/reusable-deploy.yml @@ -32,6 +32,10 @@ on: required: false type: boolean default: true + run_playwright_tests: + required: false + type: boolean + default: false secrets: GCLOUD_US_PROJECT_ID: required: true @@ -196,7 +200,9 @@ jobs: component: '${{ inputs.component }}', image_tag: '${{ needs.prepare.outputs.short_sha }}', slack_thread_ts: "${{ needs.notify-start.outputs.thread_ts }}", - slack_channel: '${{ secrets.SLACK_CHANNEL_ID }}' + slack_channel: '${{ secrets.SLACK_CHANNEL_ID }}', + run_playwright: ${{ inputs.run_playwright_tests }}, + playwright_sha: ${{ github.sha }} } })