The RSS trigger watches an RSS or Atom feed and runs a workflow when a new item is published. There's no account to connect — just a feed URL.
RSS Feed
Feed URL-
Configuration
- Add the RSS trigger as the workflow's entry point.
- Paste any RSS or Atom feed URL.
- Deploy the workflow to start polling.
Once deployed, Sim checks the feed every minute and runs the workflow for each new item.
Outputs
| Output | What it is |
|---|---|
<rss.title> | The item title |
<rss.link> | The item link |
<rss.pubDate> | The publication date |
<rss.item> | The raw item, with every field (guid, author, content, and more) |
<rss.feed> | The feed metadata (title, link, description) |
Read a mapped field directly, or reach into the raw objects for anything else — <rss.item.author>, <rss.feed.language>.
Use Cases
- Content monitoring — blogs, news sites, or competitor updates
- Release tracking — GitHub releases, changelogs, or product updates
- Podcast automation — run a workflow when a new episode drops
RSS triggers only fire for items published after you save the trigger. Existing feed items are not processed.
Common Questions
Every minute. On each poll, Sim fetches the feed, compares items against the last checked timestamp and a list of previously seen GUIDs, and runs your workflow only for genuinely new items.
It tracks up to 100 recent item GUIDs and the last checked timestamp. An item is new only if its GUID hasn't been seen and its publication date is after the last check. An idempotency layer also prevents duplicate runs for the same item.
Yes — at most 25 new items per poll, newest first. If a feed publishes more than 25 between polls, only the 25 most recent run.
title, link, and pubDate as top-level convenience fields, plus a full item object (guid, summary, content, contentSnippet, author, categories, enclosure, isoDate), a feed object (title, link, description), and a processed timestamp.
A failed fetch increments the consecutive-failure counter. After 100 consecutive failures the trigger auto-disables; any successful poll resets the counter to zero.
Yes. The underlying parser supports both RSS and Atom, so a URL of either format works in the Feed URL field.