From 6dc41775011725d650b4f6cab86bca2e75124bce Mon Sep 17 00:00:00 2001 From: pivoshenko Date: Sat, 8 Feb 2025 20:04:30 +0000 Subject: [PATCH] ci(actions): remove detect-changes --- .github/actions/detect-changes/action.yaml | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/actions/detect-changes/action.yaml diff --git a/.github/actions/detect-changes/action.yaml b/.github/actions/detect-changes/action.yaml deleted file mode 100644 index 144f14b..0000000 --- a/.github/actions/detect-changes/action.yaml +++ /dev/null @@ -1,34 +0,0 @@ -name: Detect Changed Files -description: Detect changes in files - -outputs: - pyproject: - description: Whether there are changes in `poetry.lock / pyproject.toml` - value: ${{ steps.changes.outputs.pyproject }} - - src: - description: Whether there are changes in `src` - value: ${{ steps.changes.outputs.src }} - - tests: - description: Whether there are changes in `tests` - value: ${{ steps.changes.outputs.tests }} - -runs: - using: composite - steps: - - name: Detect changes - id: detect-changes - uses: dorny/paths-filter@v3 - with: - filters: | - pyproject: &pyproject - - 'poetry.lock' - - 'pyproject.toml' - src: - - *pyproject - - 'src/**/*.py' - tests: - - *pyproject - - 'src/**/*.py' - - 'tests/**'