We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried to use this workflow, in particular the standard blog-post-workflow.yml, to add to my GitHub profile my RSS feed on Hashnode.
blog-post-workflow.yml
Steps to reproduce the behavior
readme
feed_list
workflow_dispatch
<!-- BLOG-POST-LIST:START --> <!-- BLOG-POST-LIST:END -->
My blog-post-workflow.yml
name: Lastest Hashnode Blog Post on: schedule: # Runs every hour - cron: '0 * * * *' workflow_dispatch: jobs: update-readme-with-blog: name: Update this repo's README with latest Hashnode blog posts runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: gautamkrishnar/blog-post-workflow@master with: comment_tag_name: "HASHNODE" commit_message: "Updated readme with the latest Hashnode Blog data" feed_list: "https://polilluminato.hashnode.dev/rss.xml"
Expected behavior I expected to see the list of the last 5 blog posts on Hashnode based on my RSS feed but nothing appears.
The text was updated successfully, but these errors were encountered:
@polilluminato thanks a lot for opening an issue. It's because you used the following as the comment on readme:
The comment should be the following since you had given comment_tag_name: "HASHNODE" as parameter:
comment_tag_name: "HASHNODE"
<!-- HASHNODE:START --> <!-- HASHNODE:END -->
Sorry, something went wrong.
Also released a fix for this in the latest version. Now the workflow will fail if you had specified the wrong comment on your readme: https://github.com/gautamkrishnar/blog-post-workflow/releases/tag/1.0.8
Hey @gautamkrishnar what if I want to add the header image of my blog also in the latest blogs section how can we do it.
@mnik7044 you can use custom_tags option. Read more about it here: https://github.com/gautamkrishnar/blog-post-workflow#options and #28 (comment)
custom_tags
No branches or pull requests
I tried to use this workflow, in particular the standard
blog-post-workflow.yml
, to add to my GitHub profile my RSS feed on Hashnode.Steps to reproduce the behavior
blog-post-workflow.yml
as described in thereadme
filefeed_list
option my RSS feed on Hasnode: https://polilluminato.hashnode.dev/rss.xmlworkflow_dispatch
: option in the on section of theblog-post-workflow.yml
as described in this video on YouTube by codeSTACKrMy
blog-post-workflow.yml
Expected behavior
I expected to see the list of the last 5 blog posts on Hashnode based on my RSS feed but nothing appears.
The text was updated successfully, but these errors were encountered: