From 466719d1606ca71c23e5ad3198c430abf980d56a Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Wed, 2 Jul 2025 20:24:58 +1000 Subject: [PATCH] fix: restrict v3 workflow to only v3-alpha PRs with v3 changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add path filter to ensure Build + Test v3 workflow only runs on PRs targeting v3-alpha branch that actually modify v3/ directory. This prevents the workflow from running on master branch PRs. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/build-and-test-v3.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-test-v3.yml b/.github/workflows/build-and-test-v3.yml index eba33c9ed..19d7e7b19 100644 --- a/.github/workflows/build-and-test-v3.yml +++ b/.github/workflows/build-and-test-v3.yml @@ -5,6 +5,8 @@ on: types: [opened, synchronize, reopened, ready_for_review] branches: - v3-alpha + paths: + - 'v3/**' pull_request_review: types: [submitted] branches: