Create blog-post-workflow.yml
This commit is contained in:
parent
5316d4a50d
commit
62596044f3
|
@ -0,0 +1,17 @@
|
|||
name: Latest blog post workflow
|
||||
on:
|
||||
schedule:
|
||||
# Runs every hour
|
||||
- cron: '0 * * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-readme-with-blog:
|
||||
name: Update this repos README with latest blog posts
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: gautamkrishnar/blog-post-workflow@master
|
||||
with:
|
||||
max_post_count: "4"
|
||||
feed_list: "https://dev.to/feed/itszed0"
|
Loading…
Reference in New Issue