Turn a release or news web page into a live RSS feed that updates on request. Great for marketing and product teams that want to share updates with subscribers, apps, or internal tools that read RSS.
A webhook call starts the job. The flow sets a base website URL, fetches the release page, and grabs each post using CSS selectors. It splits posts into separate items, then pulls title, date, and link from each item. Relative links are converted to full links, and the date is formatted. Each item is rendered as RSS XML. A final step wraps all items into a valid RSS channel and returns XML with the correct header, so any RSS reader can use it. A manual trigger is included for easy testing.
You only need a stable web page and correct CSS selectors. Update the base URL, page path, and selectors to match your site. Expect faster publishing and fewer mistakes since the feed is built from the page itself. This is helpful when your site has no native RSS or when you want a separate feed for release notes or a category page.