feat: readme actions

This commit is contained in:
Cory Dransfeldt 2023-03-28 13:36:13 -07:00
parent 16833c5576
commit 7b2cdebc96
No known key found for this signature in database
3 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,23 @@
name: Blog posts to readme [manual]
on: [workflow_dispatch]
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 'hi@coryd.dev'
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 }}

View file

@ -0,0 +1,25 @@
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 'hi@coryd.dev'
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 }}

View file

@ -9,7 +9,11 @@ Hi! I'm Cory. 👋🏻
This is the code for my personal website and portfolio. Built using 11ty and This is the code for my personal website and portfolio. Built using 11ty and
deployed on Vercel. deployed on Vercel.
**Built with:** ## My latest posts
<!-- BLOGPOSTS:START -->
<!-- BLOGPOSTS:END -->
### Built with
- [VS Code](https://code.visualstudio.com) - [VS Code](https://code.visualstudio.com)
- [iTerm](https://iterm2.com) - [iTerm](https://iterm2.com)