From b57fa24b0a7462b185e6be12e79186a6418d43f5 Mon Sep 17 00:00:00 2001 From: Tetsuaki Hamano Date: Sun, 12 May 2024 11:45:06 +0900 Subject: [PATCH] Change detection filter pattern --- .github/workflows/php-changes-detection.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php-changes-detection.yml b/.github/workflows/php-changes-detection.yml index ef2bfa7c0e637..cb78663aa4f97 100644 --- a/.github/workflows/php-changes-detection.yml +++ b/.github/workflows/php-changes-detection.yml @@ -19,8 +19,10 @@ jobs: id: changed-files-php uses: tj-actions/changed-files@0874344d6ebbaa00a27da73276ae7162fadcaf69 # v44.3.0 with: - files: | - **.php + files: | + lib/** + packages/**/*.php + phpunit/** - name: List all changed files if: steps.changed-files-php.outputs.any_changed == 'true'