From 89febb2da8fb3dd3751fb9483eb4c9959c566697 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 17 Dec 2024 10:23:55 -0300 Subject: [PATCH] chore: update changes filter to include new lock files and project structure (#5304) chore: Update changes-filter.yaml to include new lock files and project structure - Added 'uv.lock' and 'src/backend/base/uv.lock' to the changes filter. - Included 'src/backend/base/pyproject.toml' for tracking changes in the base directory. - Adjusted paths to ensure proper monitoring of relevant files in the backend. --- .github/changes-filter.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/changes-filter.yaml b/.github/changes-filter.yaml index 255ff8b43..831a028a9 100644 --- a/.github/changes-filter.yaml +++ b/.github/changes-filter.yaml @@ -3,7 +3,9 @@ python: - "src/backend/**" - "src/backend/**.py" - "pyproject.toml" - - "poetry.lock" + - "uv.lock" + - "src/backend/base/pyproject.toml" + - "src/backend/base/uv.lock" - "**/python_test.yml" components-changes: - "src/backend/base/langflow/components/**"