The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"nodes": [
{
"parameters": {
"triggerTimes": {
"item": [
{
"hour": 8,
"minute": 0
}
]
}
},
"name": "Daily Trigger",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
200,
300
]
},
{
"parameters": {
"url": "https://example.com/feed.xml"
},
"name": "Read RSS Feed",
"type": "n8n-nodes-base.rssFeedRead",
"typeVersion": 1,
"position": [
500,
300
]
},
{
"parameters": {
"functionCode": "return $items.slice(0, 5).map(item => ({ json: { title: item.json.title, link: item.json.link } }));"
},
"name": "Limit Articles",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
800,
300
]
},
{
"parameters": {
"channel": "#news",
"text": "Latest: {{$json.title}} - {{$json.link}}"
},
"name": "Send to Slack",
"type": "n8n-nodes-base.slack",
"typeVersion": 1,
"position": [
1100,
300
]
}
],
"connections": {
"Daily Trigger": {
"main": [
[
{
"node": "Read RSS Feed",
"type": "main",
"index": 0
}
]
]
},
"Read RSS Feed": {
"main": [
[
{
"node": "Limit Articles",
"type": "main",
"index": 0
}
]
]
},
"Limit Articles": {
"main": [
[
{
"node": "Send to Slack",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Workflow-Rss-To-Slack. Uses rssFeedRead, slack. Scheduled trigger; 4 nodes.
Source: https://github.com/Rumman90/n8n-workflows/blob/main/workflows/workflow-rss-to-slack.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Busy professionals who want a quick daily update combining their calendar, weather, and top news.
This workflow contains community nodes that are only compatible with the self-hosted version of n8n.
Post Rss Feed Items From Yesterday To Slack. Uses dateTime, rssFeedRead, slack. Scheduled trigger; 6 nodes.
Post RSS feed items from yesterday to Slack. Uses dateTime, rssFeedRead, slack. Scheduled trigger; 6 nodes.
This workflow will collect the RSS feed data from the previous day and post them to a Slack channel.