This workflow follows the Discord → HTTP Request 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": "@Get Issue",
"type": "n8n-nodes-base.httpRequest",
"maxTries": 3,
"position": [
1050,
590
],
"parameters": {
"url": "https://api.github.com/notifications",
"options": {},
"authentication": "basicAuth",
"queryParametersUi": {
"parameter": [
{
"name": "since",
"value": "={{$node[\"@Get Date 1 min ago\"].json[\"since\"]}}"
}
]
},
"headerParametersUi": {
"parameter": [
{
"name": "User-Agent",
"value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246"
}
]
}
},
"credentials": {
"httpBasicAuth": "<your credential>"
},
"retryOnFail": true,
"typeVersion": 1
},
{
"name": "Cron",
"type": "n8n-nodes-base.cron",
"position": [
710,
590
],
"parameters": {
"triggerTimes": {
"item": [
{
"mode": "everyX",
"unit": "minutes",
"value": 1
}
]
}
},
"typeVersion": 1
},
{
"name": "Discord",
"type": "n8n-nodes-base.discord",
"position": [
1610,
580
],
"parameters": {
"text": "=Notifications In last minutes: <@userIdForTagging>\n{{$node[\"Function\"].json[\"reportMessage\"]}}"
},
"typeVersion": 1
},
{
"name": "Function",
"type": "n8n-nodes-base.function",
"position": [
1230,
590
],
"parameters": {
"functionCode": "const newItems = [];\n\nfor (const item of items[0].json) {\n newItems.push(`- [${item.reason}] => ${item.subject.title} @ ${item.subject.url.replace('api.','').replace('/repos','')}`);\n }\n\nreturn [{json: {reportMessage: `${newItems.join('\\r\\n')}`, hasNotifications: items[0].json.length > 0}}];\n"
},
"typeVersion": 1
},
{
"name": "IF",
"type": "n8n-nodes-base.if",
"position": [
1400,
590
],
"parameters": {
"conditions": {
"boolean": [
{
"value1": "={{$node[\"Function\"].json[\"hasNotifications\"]}}",
"value2": true
}
]
}
},
"typeVersion": 1
},
{
"name": "@Get Date 1 min ago",
"type": "n8n-nodes-base.function",
"position": [
860,
590
],
"parameters": {
"functionCode": "const date = new Date(new Date().setMinutes(new Date().getMinutes() - (1))).toISOString()\nreturn [{json: {since: date}}];"
},
"typeVersion": 1
}
],
"connections": {
"IF": {
"main": [
[
{
"node": "Discord",
"type": "main",
"index": 0
}
]
]
},
"Cron": {
"main": [
[
{
"node": "@Get Date 1 min ago",
"type": "main",
"index": 0
}
]
]
},
"Function": {
"main": [
[
{
"node": "IF",
"type": "main",
"index": 0
}
]
]
},
"@Get Issue": {
"main": [
[
{
"node": "Function",
"type": "main",
"index": 0
}
]
]
},
"@Get Date 1 min ago": {
"main": [
[
{
"node": "@Get Issue",
"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.
httpBasicAuth
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Send Github Notifications To Discord Webhook. Uses httpRequest, discord. 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.
I wanted a journal but never had the discipline to write one. Most of my day happens in Discord anyway, so I built this to do it for me.
This workflow monitors product prices from BooksToScrape and sends alerts to a Discord channel via webhook when competitor's prices are lower than our prices. Schedule (for daily or required schedule)
This workflow provides an automated, intelligent solution for global weather monitoring. It goes beyond simple data fetching by calculating a custom "Comfort Index" and using AI to provide human-like
Global Industrial Intelligence Workflow
AmazonLuna-Games-Fetch. Uses httpRequest, scheduleTrigger, googleSheets, stickyNote. Scheduled trigger; 16 nodes.