Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions .github/workflows/theseus-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,19 +162,15 @@ jobs:
for repo, s in sorted(statuses.items())
)

body = f"""## Automated Theseus Data Engine Run

| Repo | Status |
|------|--------|
{rows}
| **Total** | **{passed}/{total} completed** |

This pull request contains the latest pre-computed persistence data for the tracked repositories.

**Trigger:** Monthly Schedule / Workflow Dispatch
"""
header = "## Automated Theseus Data Engine Run\n\n"
table = "| Repo | Status |\n|------|--------|\n"
total_row = f"| **Total** | **{passed}/{total} completed** |\n\n"
footer = ("This pull request contains the latest pre-computed "
"persistence data for the tracked repositories.\n\n"
"**Trigger:** Monthly Schedule / Workflow Dispatch")
body = header + table + rows + "\n" + total_row + footer
with open("pr-body.md", "w") as f:
f.write(body.strip())
f.write(body)
PYEOF

- name: Validate graph files
Expand Down
Loading