diff --git a/scripts/release.py b/scripts/release.py index e4ce1274c3..dfd3021240 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -113,7 +113,12 @@ def has_changes(path: Path, git_hash: GitHash) -> bool: ) changed_files = [Path(f) for f in output.stdout.splitlines()] - relevant_files = [f for f in changed_files if f.suffix in [".py", ".ts"]] + relevant_files = [ + f + for f in changed_files + if f.suffix in [".py", ".ts"] + or f.name in ("uv.lock", "package-lock.json", "pnpm-lock.yaml", "yarn.lock") + ] return len(relevant_files) >= 1 except subprocess.CalledProcessError: return False