feat: readme actions
This commit is contained in:
parent
16833c5576
commit
7b2cdebc96
3 changed files with 53 additions and 1 deletions
23
.github/workflows/blog-posts-to-readme-manual.yaml
vendored
Normal file
23
.github/workflows/blog-posts-to-readme-manual.yaml
vendored
Normal 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 }}
|
25
.github/workflows/blog-posts-to-readme.yaml
vendored
Normal file
25
.github/workflows/blog-posts-to-readme.yaml
vendored
Normal 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 }}
|
|
@ -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)
|
||||||
|
|
Reference in a new issue