Skip to content

Getting Hashnode Blog post Image from the feed #116

Answered by gautamkrishnar
sansk asked this question in Q&A
Discussion options

You must be logged in to vote

@sansk please try using the yaml below:

name: Latest blog post workflow
on:
  schedule: # Run workflow automatically
    - cron: '0 * * * *' # Runs every hour, on the hour
  workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the Github Actions Workflow page directly

jobs:
  update-readme-with-blog:
    name: Update this repo's README with latest blog posts
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Pull in Hashnode posts
        uses: gautamkrishnar/blog-post-workflow@master
        with:
          feed_list: "https://theintrovertcoder.hashnode.dev/rss.xml"
          max_post_co…

Replies: 2 comments 8 replies

Comment options

You must be logged in to vote
1 reply
@Sagar0-0
Comment options

Answer selected by sansk
Comment options

You must be logged in to vote
7 replies
@gautamkrishnar
Comment options

@sansk
Comment options

@gautamkrishnar
Comment options

@gautamkrishnar
Comment options

@sansk
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
3 participants
Converted from issue

This discussion was converted from issue #115 on February 02, 2022 07:08.