From e207798a8f03927e469e22ee9c34be607eb7e39e Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 29 Nov 2023 11:42:00 +0000 Subject: [PATCH] Allow for running playwright tests upstream (#11959) Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .github/workflows/end-to-end-tests.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/end-to-end-tests.yaml b/.github/workflows/end-to-end-tests.yaml index 1e4fb089de..ee8c6b4906 100644 --- a/.github/workflows/end-to-end-tests.yaml +++ b/.github/workflows/end-to-end-tests.yaml @@ -6,6 +6,14 @@ on: types: - completed + # support calls from other workflows for downstream testing + workflow_call: + inputs: + react-sdk-repository: + type: string + required: true + description: "The name of the github repository to check out and build." + concurrency: group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.run_id }} cancel-in-progress: ${{ github.event.workflow_run.event == 'pull_request' }}