mirror of
https://github.com/XFox111/XFox111.git
synced 2026-04-22 07:08:01 +03:00
17 lines
405 B
YAML
17 lines
405 B
YAML
name: Latest blog post workflow
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Runs every day
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
update-readme-with-blog:
|
|
name: Update this repo's README with latest blog posts
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: gautamkrishnar/blog-post-workflow@master
|
|
with:
|
|
feed_list: "https://blog.xfox111.net/data/rss"
|