This workflow follows the HTTP Request → 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 →
{
"name": "Daily Tasks Digest",
"tag": "Tasks",
"nodes": [
{
"id": "30",
"name": "Cron",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
0,
0
],
"parameters": {
"triggerTimes": [
{
"hour": 9,
"minute": 15
}
]
}
},
{
"id": "31",
"name": "Linear - List Issues",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 2,
"position": [
300,
0
],
"parameters": {
"url": "https://api.linear.app/graphql",
"method": "POST",
"jsonParameters": true,
"headers": {
"Authorization": "Bearer {{ $env.LINEAR_TOKEN }}"
},
"body": {
"query": "query { issues(filter: {state: {name: {eq: \"In Progress\"}}}) { nodes { identifier title assignee { name } } } }"
}
}
},
{
"id": "32",
"name": "Slack Digest",
"type": "n8n-nodes-base.slack",
"typeVersion": 1,
"position": [
600,
0
],
"parameters": {
"operation": "post",
"channel": "#ops-daily",
"text": "Daily task digest generated by Tasks Agent"
}
}
],
"connections": {
"Cron": {
"main": [
[
{
"node": "Linear - List Issues",
"type": "main",
"index": 0
}
]
]
},
"Linear - List Issues": {
"main": [
[
{
"node": "Slack Digest",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionTimeout": 300,
"timezone": "UTC"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Daily Tasks Digest. Uses httpRequest, slack. Scheduled trigger; 3 nodes.
Source: https://github.com/ChrisCruze/N8N-Agent-Kit/blob/2be84902f6f490b090cc749d78d8f2138e63b37e/examples/tasks-digest.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.
Schedule + HTTP + Slack (canonical first workflow). Uses httpRequest, slack. Scheduled trigger; 3 nodes.
Template 14310. Uses httpRequest, stopAndError, slack, gmail. Scheduled trigger; 53 nodes.
It identifies SKUs with low inventory per source and sends daily alerts via:
Linear Router — Reconciler. Uses httpRequest, slack. Scheduled trigger; 17 nodes.
WF-OB-1: First Call Scheduler. Uses httpRequest, slack. Scheduled trigger; 17 nodes.