This is an automated email from the ASF dual-hosted git repository.
akm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-agents.git
The following commit(s) were added to refs/heads/main by this push:
new 7b6748c Update GH workflow analysis code
7b6748c is described below
commit 7b6748c21e88a81d40476896dc2d69ca64d1e7af
Author: Andrew Musselman <[email protected]>
AuthorDate: Wed Apr 1 21:09:24 2026 -0700
Update GH workflow analysis code
---
repos/apache/github-workflows/code.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/repos/apache/github-workflows/code.py
b/repos/apache/github-workflows/code.py
index f4acf0d..9841ee0 100644
--- a/repos/apache/github-workflows/code.py
+++ b/repos/apache/github-workflows/code.py
@@ -671,7 +671,7 @@ async def run(input_dict, tools):
lines.append("|------------|----------|--------|---------|")
for w in sorted(ci_wfs, key=lambda x: (x["repo"], x.get("file",
""))):
eco_str = ", ".join(w.get("ecosystems", [])) or "—"
- summary = safe_str(w.get("summary"))[:80]
+ summary = safe_str(w.get("summary"))
lines.append(f"| {w['repo']} | `{w.get('file', '?')}` |
{sanitize_md(eco_str)} | {sanitize_md(summary)} |")
lines.append(f"\n</details>\n")
@@ -683,7 +683,7 @@ async def run(input_dict, tools):
lines.append("|------------|----------|--------|---------|")
for w in sorted(doc_wfs, key=lambda x: (x["repo"], x.get("file",
""))):
eco_str = ", ".join(w.get("ecosystems", [])) or "—"
- summary = safe_str(w.get("summary"))[:80]
+ summary = safe_str(w.get("summary"))
lines.append(f"| {w['repo']} | `{w.get('file', '?')}` |
{sanitize_md(eco_str)} | {sanitize_md(summary)} |")
lines.append(f"\n</details>\n")
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]