Skip to content

Does this workflow support user's GitHub Feed? #190

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

You must be logged in to vote

Github has an RSS feed that you can use. in your case you can try using:

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 dev.to posts
        uses: gautamkrishnar/blog-post-workflow@v1
        with:
          feed_list: "https://github.com/clcmo.atom"

Please foll…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by gautamkrishnar
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
2 participants
Converted from issue

This discussion was converted from issue #189 on January 19, 2023 08:25.