From 299f01bcbee5f78eaa0d719e58f2e9c1afcaf8a2 Mon Sep 17 00:00:00 2001 From: Aki Hamano <54422211+t-hamano@users.noreply.github.com> Date: Tue, 14 May 2024 00:29:34 +0900 Subject: [PATCH] GitHub Actions: Fix PHP file change detection filter pattern (#61183) * GitHub Actions: Fix PHP file change detection filter pattern * Temporarily update PHP files * Revert temporary changes * enclose the pattern in quotes Co-authored-by: Brian Alexander <824344+ironprogrammer@users.noreply.github.com> * Updated some files to test GitHub action * Remove quotes * Undo unwanted changes * Change detection filter pattern * Add spaces --------- Co-authored-by: t-hamano Co-authored-by: ironprogrammer --- .github/workflows/php-changes-detection.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php-changes-detection.yml b/.github/workflows/php-changes-detection.yml index 3b813c8f8d48f..5a7749ee21381 100644 --- a/.github/workflows/php-changes-detection.yml +++ b/.github/workflows/php-changes-detection.yml @@ -20,7 +20,9 @@ jobs: uses: tj-actions/changed-files@0874344d6ebbaa00a27da73276ae7162fadcaf69 # v44.3.0 with: files: | - **.{php} + lib/** + packages/**/*.php + phpunit/** - name: List all changed files if: steps.changed-files-php.outputs.any_changed == 'true'