fix(ci): only run supplychain checks in pr

This commit is contained in:
ethernet 2026-06-23 12:35:17 -04:00
parent c820eb6a5a
commit a0471e2464
2 changed files with 15 additions and 8 deletions

View file

@ -70,11 +70,7 @@ def _is_mcp_catalog(p: str) -> bool:
def classify(files: list[str]) -> dict[str, bool]:
"""Map changed paths to ``{lane: should_run}``."""
files = [f.strip() for f in files if f.strip()]
if not files or any(f.startswith(".github/") for f in files):
return dict.fromkeys(
("python", "docker_meta", "frontend", "site", "scan", "deps", "mcp_catalog"), True
)
return {
ret = {
"python": any(not _py_irrelevant(f) for f in files),
"docker_meta": any(f.startswith(_DOCKER_META) for f in files),
"frontend": any(f.startswith(_FRONTEND) or f in _ROOT_NPM for f in files),
@ -83,6 +79,17 @@ def classify(files: list[str]) -> dict[str, bool]:
"deps": any(f == "pyproject.toml" for f in files),
"mcp_catalog": any(_is_mcp_catalog(f) for f in files),
}
if not files or any(f.startswith(".github/") for f in files):
ret["python"] = True
ret["docker_meta"] = True
ret["frontend"] = True
ret["site"] = True
ret["scan"] = True
ret["deps"] = True
# explicitly skip mcp catalog here. it's not needed unless those files are modified.
return ret
def main() -> int: