From b918e8e8bc0f999f9c99981e339ded55092cdd29 Mon Sep 17 00:00:00 2001 From: James Thompson Date: Mon, 14 Sep 2026 23:22:57 +1000 Subject: [PATCH] Enhance integration-test.yml with PR trigger Add pull request trigger for integration tests and default language input. --- .github/workflows/integration-test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 33e2effb04..860ae75b3a 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -1,6 +1,12 @@ name: "Integration Tests" on: + pull_request: + paths: + - 'integration-tests/**' + - '.github/workflows/integration-test.yml' + branches: + - main workflow_dispatch: inputs: language: @@ -49,7 +55,7 @@ jobs: fi echo "languages=${languages}" >> "$GITHUB_OUTPUT" env: - INPUTS_LANGUAGE: ${{ inputs.language }} + INPUTS_LANGUAGE: ${{ inputs.language || 'all' }} build-collector: runs-on: ubuntu-latest