1 parent c2481ec commit 0ab838fCopy full SHA for 0ab838f
1 file changed
.github/workflows/agent-core-target-docs.yml
@@ -61,6 +61,14 @@ jobs:
61
content = path.read_text(encoding="utf-8")
62
content = content.replace(' - "Program and code""""', ' - "Program and code"""')
63
content = content.replace(' - "code and migration""""', ' - "code and migration"""')
64
+ content = content.replace(
65
+ " return merged\n",
66
+ " for name in REMOVED_NAMES:\n"
67
+ " merged = \\\"\\n\\\".join(line for line in merged.splitlines() if name not in line)\n"
68
69
+ 1,
70
+ )
71
+ content = content.replace(" ensure_no_active_references()\n", "")
72
path.write_text(content, encoding="utf-8")
73
PY
74
python tools/scripts/consolidate_agent_core_target_docs.py \
0 commit comments