Skip to content

Update README with the latest blog posts #85

Update README with the latest blog posts

Update README with the latest blog posts #85

name: Update README with the latest blog posts
on:
schedule:
- cron: '0 */12 * * *' # Runs every 12 hours
workflow_dispatch:
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Fetch RSS Feed
uses: sarisia/actions-readme-feed@v1
with:
url: 'https://notionconvert.com/blog/index.xml'
file: 'README.md'
max_entry: 5
start_flag: '<!-- feed start -->'
end_flag: '<!-- feed end -->'
- name: Commit Changes
uses: sarisia/actions-commit@master