File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ name: Latest blog post workflow
22
33on :
44 schedule :
5+ # Runs once every hour
56 - cron : ' 0 * * * *'
67 workflow_dispatch :
78
@@ -19,10 +20,11 @@ jobs:
1920 feed_list : " https://medium.com/feed/@vishalgunjal"
2021 max_post_count : 5
2122
22- # 👇 FIXED: $newline is at the START to prevent rows from merging
23- template : " $newline| [$title]($url) | $date | "
23+ # 👇 STANDARD TEMPLATE (No custom JS)
24+ template : " $newline- 📝 [$title]($url) — $date"
2425
25- # 👇 FIXED: "dd MMM yyyy" gives you "16 Jan 2026"
26- date_format : " dd MMM yyyy"
26+ # 👇 ROBUST FORMAT: "16 Jan 2026"
27+ # This uses the internal library's standard mask
28+ date_format : " dd mmm yyyy"
2729
28- commit_message : " docs: fix table newlines and date format "
30+ commit_message : " docs: fixed date format to standard string "
You can’t perform that action at this time.
0 commit comments