From 7b2cdebc9605e55f7455a89c8cb583b75e589f85 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 28 Mar 2023 13:36:13 -0700 Subject: [PATCH] feat: readme actions --- .../blog-posts-to-readme-manual.yaml | 23 +++++++++++++++++ .github/workflows/blog-posts-to-readme.yaml | 25 +++++++++++++++++++ README.md | 6 ++++- 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/blog-posts-to-readme-manual.yaml create mode 100644 .github/workflows/blog-posts-to-readme.yaml diff --git a/.github/workflows/blog-posts-to-readme-manual.yaml b/.github/workflows/blog-posts-to-readme-manual.yaml new file mode 100644 index 00000000..001e4bd6 --- /dev/null +++ b/.github/workflows/blog-posts-to-readme-manual.yaml @@ -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 }} diff --git a/.github/workflows/blog-posts-to-readme.yaml b/.github/workflows/blog-posts-to-readme.yaml new file mode 100644 index 00000000..78ce6f77 --- /dev/null +++ b/.github/workflows/blog-posts-to-readme.yaml @@ -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 }} diff --git a/README.md b/README.md index a2585ddb..e3d52ee3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,11 @@ Hi! I'm Cory. 👋🏻 This is the code for my personal website and portfolio. Built using 11ty and deployed on Vercel. -**Built with:** +## My latest posts + + + +### Built with - [VS Code](https://code.visualstudio.com) - [iTerm](https://iterm2.com)