Skip to content

[Bug]: Cannot read response->item->title #202

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

You must be logged in to vote

@musnows it is because one of your posts doesn't have a title in the RSS feed. This is not a bug. You can fix it in your website or you can use the following:

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
permissions:
  contents: write # To write the generated contents to the readme

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@v3…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@musnows
Comment options

Answer selected by musnows
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #201 on March 17, 2023 12:12.