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 →
{
"id": "wf-1001",
"name": "GitHub PR Review Notifier",
"nodes": [
{
"id": "b2c3d4e5-0001-0001-0001-000000000001",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
100,
300
],
"parameters": {
"httpMethod": "POST",
"path": "github-pr-events",
"responseMode": "onReceived",
"responseCode": 200
}
},
{
"id": "b2c3d4e5-0002-0002-0002-000000000002",
"name": "Is Review Submitted",
"type": "n8n-nodes-base.if",
"typeVersion": 2,
"position": [
300,
300
],
"parameters": {
"conditions": {
"options": {
"caseSensitive": true
},
"conditions": [
{
"id": "cond-1",
"leftValue": "={{ $json.action }}",
"rightValue": "submitted",
"operator": {
"type": "string",
"operation": "equals"
}
}
],
"combinator": "and"
}
}
},
{
"id": "b2c3d4e5-0003-0003-0003-000000000003",
"name": "Format Slack Message",
"type": "n8n-nodes-base.set",
"typeVersion": 3,
"position": [
500,
200
],
"parameters": {
"mode": "manual",
"assignments": {
"assignments": [
{
"id": "f-1",
"name": "channel",
"value": "#code-reviews",
"type": "string"
},
{
"id": "f-2",
"name": "text",
"value": "={{ $json.review.user.login }} reviewed PR #{{ $json.pull_request.number }}: *{{ $json.review.state }}*\n{{ $json.pull_request.title }}\n{{ $json.pull_request.html_url }}",
"type": "string"
}
]
}
}
},
{
"id": "b2c3d4e5-0004-0004-0004-000000000004",
"name": "Post to Slack",
"type": "n8n-nodes-base.slack",
"typeVersion": 2,
"position": [
700,
200
],
"parameters": {
"resource": "message",
"operation": "post",
"channel": "={{ $json.channel }}",
"text": "={{ $json.text }}",
"otherOptions": {}
},
"credentials": {
"slackOAuth2Api": {
"name": "<your credential>"
}
}
},
{
"id": "b2c3d4e5-0005-0005-0005-000000000005",
"name": "Log Skipped Event",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
500,
400
],
"parameters": {}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Is Review Submitted",
"type": "main",
"index": 0
}
]
]
},
"Is Review Submitted": {
"main": [
[
{
"node": "Format Slack Message",
"type": "main",
"index": 0
}
],
[
{
"node": "Log Skipped Event",
"type": "main",
"index": 0
}
]
]
},
"Format Slack Message": {
"main": [
[
{
"node": "Post to Slack",
"type": "main",
"index": 0
}
]
]
}
},
"active": true,
"settings": {
"executionOrder": "v1"
},
"tags": [
{
"id": "tag-1",
"name": "integrations"
}
],
"versionId": "v-1001-3"
}
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.
slackOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
GitHub PR Review Notifier. Uses slack. Webhook trigger; 5 nodes.
Source: https://github.com/just-claw-it/n8n-to-claw/blob/main/test-fixtures/github-webhook-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.
Convert An Xml File To Json Via Webhook Call. Uses stickyNote, extractFromFile, respondToWebhook, xml. Webhook trigger; 12 nodes.
This template is for everyone who needs to work with XML data a lot and wants to convert it to JSON instead.
Generate google meet links in slack. Uses stickyNote, googleCalendar, slack. Webhook trigger; 9 nodes.
Webhook to Slack and Google Sheets. Uses slack, googleSheets. Webhook trigger; 9 nodes.
Stop manually checking suspicious links. This free n8n workflow provides the foundation for a powerful, automated URL analysis pipeline. Using the NixGuard AI engine, you can instantly analyze suspici