Does this workflow support user's GitHub Feed? #190
-
Is your feature request related to a problem? Please describe. Describe the solution you'd like |
Beta Was this translation helpful? Give feedback.
Answered by
gautamkrishnar
Jan 19, 2023
Replies: 1 comment
-
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 follow the steps noted here: https://github.com/gautamkrishnar/blog-post-workflow#how-to-use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gautamkrishnar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Github has an RSS feed that you can use. in your case you can try using:
Please foll…