This workflow follows the Notion → Slack recipe pattern — see all workflows that pair these two integrations.
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": [
{
"name": "Cron",
"type": "n8n-nodes-base.cron",
"position": [
470,
320
],
"parameters": {
"triggerTimes": {
"item": [
{
"hour": 8
}
]
}
},
"typeVersion": 1
},
{
"name": "NoOp",
"type": "n8n-nodes-base.noOp",
"position": [
1120,
420
],
"parameters": {},
"typeVersion": 1
},
{
"name": "Get To Dos",
"type": "n8n-nodes-base.notion",
"position": [
670,
320
],
"parameters": {
"blockId": "bafdscf",
"resource": "block",
"operation": "getAll",
"returnAll": true
},
"credentials": {
"notionApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "If task assigned to Harshil?",
"type": "n8n-nodes-base.if",
"notes": "Check if the task is incomplete",
"position": [
870,
320
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"to_do\"][\"text\"][1][\"mention\"][\"user\"][\"name\"]}}",
"value2": "NAME"
}
],
"boolean": [
{
"value1": "={{$json[\"to_do\"][\"checked\"]}}"
}
]
}
},
"notesInFlow": true,
"typeVersion": 1
},
{
"name": "Create a Direct Message",
"type": "n8n-nodes-base.slack",
"position": [
1120,
220
],
"parameters": {
"options": {
"users": [
"U01JXLAJ6SE"
]
},
"resource": "channel",
"operation": "open"
},
"credentials": {
"slackApi": "<your credential>"
},
"executeOnce": false,
"typeVersion": 1
},
{
"name": "Send a Direct Message",
"type": "n8n-nodes-base.slack",
"position": [
1320,
220
],
"parameters": {
"text": "# TO DO",
"channel": "={{$json[\"id\"]}}",
"attachments": [
{
"title": "=\u2611\ufe0f {{$node[\"If task assigned to Harshil?\"].json[\"to_do\"][\"text\"][0][\"text\"][\"content\"]}}"
}
],
"otherOptions": {
"mrkdwn": true
}
},
"credentials": {
"slackApi": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"Cron": {
"main": [
[
{
"node": "Get To Dos",
"type": "main",
"index": 0
}
]
]
},
"Get To Dos": {
"main": [
[
{
"node": "If task assigned to Harshil?",
"type": "main",
"index": 0
}
]
]
},
"Create a Direct Message": {
"main": [
[
{
"node": "Send a Direct Message",
"type": "main",
"index": 0
}
]
]
},
"If task assigned to Harshil?": {
"main": [
[
{
"node": "Create a Direct Message",
"type": "main",
"index": 0
}
],
[
{
"node": "NoOp",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
notionApislackApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Check To Do On Notion And Send Message On Slack. Uses noOp, notion, slack. Scheduled trigger; 6 nodes.
Source: https://github.com/Zie619/n8n-workflows — 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.
This workflow fully automates your team's daily standup process using Slack for communication, Notion for structured data storage, and Redis for real-time session management.
Code Filter. Uses stickyNote, notion, noOp, splitInBatches. Scheduled trigger; 29 nodes.
This template is for everyone who manages their blog entries in Notion and want to have an easy way to transform them to Webflow.
🌸 Affirmation Sender + Weekly Gratitude Digest v2
Filter Slack. Uses slack, notion, stickyNote. Scheduled trigger; 24 nodes.