gautamkrishnar/blog-post-workflow

[Bug]: Not detecting posts

Edstub207 opened this issue · 5 comments

For some reason this workflow isn't working for me and I'm not sure why...

Logs and RSS Feed:
image

README.MD
image

@Edstub207 looks like your content is encoded, you need to have a plain text version of the feed to show it via the blog post workflow.

Example:

<item>
<title>Hi, I'm Gautam krishna.R</title>
<author>Gautam krishna.R</author>
<pubDate>Sun, 02 Apr 2017 19:04:43 +0000</pubDate>
<link>https://dev.to/gautamkrishnar/hi-im-gautam-krishnar</link>
<guid>https://dev.to/gautamkrishnar/hi-im-gautam-krishnar</guid>
<description>&lt;p&gt;I have been coding for 9 years, I am a Microsoft student partner and DuckDuckGo community leader who's actively involved in several open source projects.&lt;/p&gt;
&lt;p&gt;You can find me on GitHub at &lt;a href="https://github.com/gautamkrishnar"&gt;@gautamkrishnar&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You can also find me on Twitter as &lt;a href="https://twitter.com/gautamkrishnar"&gt;@gautamkrishnar&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I live in Kollam.&lt;/p&gt;
&lt;p&gt;I mostly program in these languages: Phython, NodeJS, PHP, C, C#, Java.&lt;/p&gt;
&lt;p&gt;I am currently learning more about ML.&lt;/p&gt;
&lt;p&gt;Nice to meet you.&lt;/p&gt;
</description>
<testingTag>hello</testingTag>
<testingTag2>apple</testingTag2>
<category>introductions</category>
</item>

In your case the title and description is in cdata, not as plain text. Please follow the correct RSS spec to make it work.

Oops its using medium, let me check why it's not working. It was working earlier as #2

@Edstub207 it is due to the medium comments filter. Please use no filter argument to fix it:

filter_comments: ""

As of now, since there is no way to filter out the medium comments other than checking it for undefined category closing this for now. Will add a warning in the doc.

That fixed it, thank you!