diff --git a/scripts/release.py b/scripts/release.py index e4ce1274c3..e4bb64ecd5 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -113,7 +113,7 @@ 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", ".lock"]] return len(relevant_files) >= 1 except subprocess.CalledProcessError: return False