diff --git a/.github/workflows/pmm-qa-fb-checks.yml b/.github/workflows/pmm-qa-fb-checks.yml index 8c54bdb904d2..75c1d650d3b3 100644 --- a/.github/workflows/pmm-qa-fb-checks.yml +++ b/.github/workflows/pmm-qa-fb-checks.yml @@ -7,6 +7,10 @@ on: description: "Branch for PMM-QA to checkout (pmm-qa)" required: false type: string + qa_integration_branch: + description: "Branch for QA-integration to checkout (qa-integration)" + required: false + type: string pmm_ui_tests_branch: description: "Branch for UI tests to checkout (pmm-ui-tests)" required: false @@ -37,6 +41,9 @@ on: pmm_qa_branch: required: false type: string + qa_integration_branch: + required: false + type: string pmm_ui_tests_branch: required: false type: string @@ -88,6 +95,7 @@ jobs: sha: ${{ inputs.sha || github.event.pull_request.head.sha || 'null' }} pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'main' }} pmm_qa_branch: ${{ inputs.pmm_qa_branch || 'main' }} + qa_integration_branch: ${{ inputs.qa_integration_branch || 'main' }} pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }} pmm_client_image: ${{ inputs.pmm_client_image || 'perconalab/pmm-server:3-dev-latest' }} pmm_client_version: ${{ inputs.pmm_client_version || '3-dev-latest' }}