mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-24 11:38:29 +00:00
fix(ci): classify should default to no MCP
This commit is contained in:
@@ -20,14 +20,14 @@ _mod = importlib.util.module_from_spec(_spec)
|
||||
_spec.loader.exec_module(_mod)
|
||||
classify = _mod.classify
|
||||
|
||||
ALL = {
|
||||
DEFAULT = {
|
||||
"python": True,
|
||||
"frontend": True,
|
||||
"docker_meta": True,
|
||||
"site": True,
|
||||
"scan": True,
|
||||
"deps": True,
|
||||
"mcp_catalog": True,
|
||||
"mcp_catalog": False,
|
||||
}
|
||||
|
||||
|
||||
@@ -73,10 +73,10 @@ CASES = {
|
||||
_lanes(python=True, scan=True, mcp_catalog=True),
|
||||
),
|
||||
# Fail open: CI-config / empty / blank diffs run everything.
|
||||
".github change → all": ([".github/workflows/tests.yml"], ALL),
|
||||
"action change → all": ([".github/actions/detect-changes/action.yml"], ALL),
|
||||
"empty diff → all": ([], ALL),
|
||||
"blank lines → all": (["", " "], ALL),
|
||||
".github change → all": ([".github/workflows/tests.yml"], DEFAULT),
|
||||
"action change → all": ([".github/actions/detect-changes/action.yml"], DEFAULT),
|
||||
"empty diff → all": ([], DEFAULT),
|
||||
"blank lines → all": (["", " "], DEFAULT),
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user