From de0571139259ef2b654caaa43acfd267726eabc5 Mon Sep 17 00:00:00 2001 From: coreyhn Date: Wed, 25 Jun 2025 17:33:16 -0600 Subject: [PATCH] ci(development): update workflow path filters for detecting changes Updated the paths filter configuration to make sure only relevant file changes trigger certain jobs. Removed `composer.*` because changes to the `composer.json` file is explicitly covered by `composer.json` (and we aren't tracking `composer.lock` in git). Removed `bin/build.sh` to prevent unnecessary builds because changes to this file don't necessarily mean Rust code has changed (as discussed in PR #4). --- .github/workflows/development.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index d17ab6c..70db788 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -36,7 +36,6 @@ jobs: - 'composer.json' - 'src/**' - 'tests/**' - - 'composer.*' - 'phpunit.xml' - 'phpstan.neon' rust: @@ -45,7 +44,6 @@ jobs: - 'Cargo.lock' - 'rust-toolchain.toml' - 'crates/**' - - 'bin/build.sh' check-php-quality: name: Check PHP Code Quality