Skip to content

Update profile README with latest blog posts #73

Update profile README with latest blog posts

Update profile README with latest blog posts #73

Workflow file for this run

name: Update profile README with latest blog posts
on:
schedule:
- cron: '0 */6 * * *' # every 6 hours
workflow_dispatch:
jobs:
update-readme:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- name: Fetch latest blog posts
uses: gautamkrishnar/blog-post-workflow@1.9.4
with:
feed_list: "https://coreydaley.dev/rss.xml"
max_post_count: 5
readme_path: profile/README.md
gh_token: ${{ secrets.GITHUB_TOKEN }}