You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A GitHub Action that updates a section of a README from an RSS feed.
Usage
You can use this action in a workflow file like any other:
name: Update this repo's READMEon:
schedule:
# Once a day at 8 AM
- cron: 0 8 * * *jobs:
update:
runs-on: ubuntu-lateststeps:
- uses: JasonEtco/rss-to-readme@v2with:
feed-url: https://jasonet.co/rss.xmlreadme-section: feed
Options
feed-url:
The URL to an RSS feed. It's assumed that the RSS feed follow the standard format!
readme-section:
The name of the section of your README to update. This uses JasonEtco/readme-box to replace a section of the README and update the file. Your README should contain HTML comments like this, where feed is the the value of readme-section:
### Example RSS feed:
<!--START_SECTION:feed-->
...
<!--END_SECTION:feed-->
You can inspect this repo's README to see it in use!
empty-commits: (default: true)
Set this to false to not commit anything when this action run but the section didn't change.
max (default: 5)
The maximum number of items to show from the RSS feed. Defaults to 5!
template (default: "* [{{ title }}]({{ link }}))")
You can provide a Mustache template to use when rendering each item in the feed. These will be joined by a newline (\n). For example: