Skip to content

Commit a5aa463

Browse files
author
Sreeparna Deb
committed
chore(ci): test2 update available-plugins md on push
1 parent 6b917d7 commit a5aa463

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

scripts/gen_dev_wiki_table.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/usr/bin/env python3
22
import os
33
import sys
4-
import subprocess
54
import requests
6-
import json
5+
from datetime import datetime
76

87
OWNER = "ManiVaultStudio"
98
REPOS = [
@@ -74,4 +73,9 @@ def fetch_json(url):
7473
f" | {active} | {status} |"
7574
)
7675

76+
# Append a timestamp footer
77+
now = datetime.utcnow().strftime("%Y-%m-%d %H:%M UTC")
78+
lines.append(f"\n_Last status checked at {now}_")
79+
80+
# Output
7781
print("\n".join(lines))

0 commit comments

Comments
 (0)