Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Actions: Fix PHP file change detection filter pattern #61183

Merged
merged 11 commits into from
May 13, 2024
4 changes: 3 additions & 1 deletion .github/workflows/php-changes-detection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading