This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/.github/workflows/blog-posts-to-readme.yaml
2023-08-02 16:01:15 -07:00

25 lines
745 B
YAML

name: Blog posts to readme
on:
schedule:
- cron: '0 15 * * *'
jobs:
pull_blog_rss:
name: Update with latest blog posts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get RSS Feed
uses: kohrongying/readme-the-rss@master
with:
feed_url: https://coryd.dev/feed.xml
count: 5
- name: Commit file changes
run: |
git config --global user.name 'cdransf'
git config --global user.email 'coryd@hey.com'
git add .
git diff --quiet --cached || git commit -m "Update README"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GH_TOKEN }}