From 33000de50273fe162d50ff4f6b2effee594fe78a Mon Sep 17 00:00:00 2001 From: cristhianzl Date: Fri, 28 Jun 2024 12:05:48 -0300 Subject: [PATCH] chore: Add branch input parameter to Frontend Tests workflow --- .github/workflows/typescript_test.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/typescript_test.yml b/.github/workflows/typescript_test.yml index 763f4ffce..a06020f44 100644 --- a/.github/workflows/typescript_test.yml +++ b/.github/workflows/typescript_test.yml @@ -1,6 +1,12 @@ name: Run Frontend Tests on: + workflow_dispatch: + inputs: + branch: + description: "Branch to run tests on" + required: true + type: string pull_request: merge_group: @@ -19,8 +25,8 @@ jobs: strategy: fail-fast: false matrix: - shardIndex: [1, 2, 3, 4, 5, 6, 7, 8] - shardTotal: [8] + shardIndex: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + shardTotal: [10] env: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} STORE_API_KEY: ${{ secrets.STORE_API_KEY }}