We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b71a255 commit aa86365Copy full SHA for aa86365
.github/workflows/blog-post-workflow.yml
@@ -16,14 +16,13 @@ jobs:
16
- name: Pull in medium posts
17
uses: gautamkrishnar/blog-post-workflow@v1
18
with:
19
- # Your Feed URL
20
feed_list: "https://medium.com/feed/@vishalgunjal"
21
max_post_count: 5
22
23
- # 👇 IMPORTANT: This creates the table row structure
24
- template: "| [$title]($url) | $date |$newline"
+ # 👇 FIXED: $newline is at the START to prevent rows from merging
+ template: "$newline| [$title]($url) | $date |"
25
26
- # Date Format
27
- date_format: "MMM d, yyyy"
+ # 👇 FIXED: "dd MMM yyyy" gives you "16 Jan 2026"
+ date_format: "dd MMM yyyy"
28
29
- commit_message: "docs: update readme with table layout"
+ commit_message: "docs: fix table newlines and date format"
0 commit comments