diff --git a/.github/workflows/integration-tests-smoke.yml b/.github/workflows/integration-tests-smoke.yml index 1efe9c5eb..6d13980d1 100644 --- a/.github/workflows/integration-tests-smoke.yml +++ b/.github/workflows/integration-tests-smoke.yml @@ -9,6 +9,10 @@ on: required: true default: develop type: string + team: + description: Team to run the tests for (e.g. BIX, CCIP) + required: true + type: string # Only run 1 of this workflow at a time per PR concurrency: @@ -217,3 +221,4 @@ jobs: KILLGRAVE_INTERNAL_IMAGE: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/friendsofgo/killgrave CHAINLINK_IMAGE: ${{ env.CL_ECR }} CHAINLINK_VERSION: starknet.${{ github.sha }}${{ matrix.image.tag-suffix }} + CHAINLINK_USER_TEAM: ${{ github.event.inputs.team || 'BIX' }} diff --git a/.github/workflows/integration-tests-soak.yml b/.github/workflows/integration-tests-soak.yml index 0d0a3ce63..0af296760 100644 --- a/.github/workflows/integration-tests-soak.yml +++ b/.github/workflows/integration-tests-soak.yml @@ -15,6 +15,10 @@ on: default: develop required: true type: string + team: + description: Team to run the tests for (e.g. BIX, CCIP) + required: true + type: string env: TEST_LOG_LEVEL: debug @@ -84,4 +88,5 @@ jobs: KILLGRAVE_INTERNAL_IMAGE: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/friendsofgo/killgrave CHAINLINK_IMAGE: ${{ env.CL_ECR }} CHAINLINK_VERSION: starknet.${{ github.sha }}${{ matrix.image.tag-suffix }} + CHAINLINK_USER_TEAM: ${{ github.event.inputs.team || 'BIX' }}