Skip to content

Commit aa86365

Browse files
Fix table newlines and update date format in workflow
1 parent b71a255 commit aa86365

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/blog-post-workflow.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ jobs:
1616
- name: Pull in medium posts
1717
uses: gautamkrishnar/blog-post-workflow@v1
1818
with:
19-
# Your Feed URL
2019
feed_list: "https://medium.com/feed/@vishalgunjal"
2120
max_post_count: 5
2221

23-
# 👇 IMPORTANT: This creates the table row structure
24-
template: "| [$title]($url) | $date |$newline"
22+
# 👇 FIXED: $newline is at the START to prevent rows from merging
23+
template: "$newline| [$title]($url) | $date |"
2524

26-
# Date Format
27-
date_format: "MMM d, yyyy"
25+
# 👇 FIXED: "dd MMM yyyy" gives you "16 Jan 2026"
26+
date_format: "dd MMM yyyy"
2827

29-
commit_message: "docs: update readme with table layout"
28+
commit_message: "docs: fix table newlines and date format"

0 commit comments

Comments
 (0)