← Back
Notify on slack from GitHub issue and send to Jira
n8n_2000_workflows / notify-on-slack-github-issue-jira.json
Complexity: simpleNodes: 4
basedataerrorfetchfromgithubhttprequestincomingissuejiran8nn8n_2000_workflowsnodesnotifynotify-on-slack-github-issue-jira.jsononsendsimpleslacktotriggerwebhook
Node Overview
- Incoming Trigger – n8n-nodes-base.webhook
- Fetch data from GitHub issue – n8n-nodes-base.httpRequest
- Send to Jira – n8n-nodes-base.httpRequest
- Send Error to Slack – n8n-nodes-base.slack
Workflow JSON
{ "name": "Notify on slack from GitHub issue and send to Jira", "nodes": [ { "id": "trigger-github-issue", "name": "Incoming Trigger", "type": "n8n-nodes-base.webhook", "typeVersion": 1, "position": [ -600, 135700 ], "parameters": { "httpMethod": "POST", "path": "notify-on-slack-from-github-issue-and-send-to-jira", "responseCode": 200, "responseMode": "onReceived" } }, { "id": "fetch-github-issue", "name": "Fetch data from GitHub issue", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [ -300, 135700 ], "parameters": { "method": "GET", "url": "https://api.example.com/github-issue", "responseFormat": "json" } }, { "id": "send-jira", "name": "Send to Jira", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [ 300, 135700 ], "parameters": { "method": "POST", "url": "https://api.example.com/jira", "responseFormat": "json", "options": {} } }, { "id": "error-handler-600-135700", "name": "Send Error to Slack", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [ 600, 135700 ], "parameters": { "resource": "message", "operation": "post", "channel": "#automation-alerts", "text": "={{ $json.get('error_message', 'An error occurred') }}" } } ], "connections": { "Incoming Trigger": { "main": [ [ { "node": "Fetch data from GitHub issue", "type": "main", "index": 0 } ] ] }, "Fetch data from GitHub issue": { "main": [ { "node": "Send to Jira", "type": "main", "index": 0 } ] }, "Send to Jira": { "main": [ [ { "node": "Send Error to Slack", "type": "main", "index": 0 } ] ] } }, "settings": {}, "active": false }