Gmail 지원 요청 메시지에서 Linear 이슈 자동 생성
중급
이것은Support, AI분야의자동화 워크플로우로, 13개의 노드를 포함합니다.주로 Gmail, Linear, Markdown, ScheduleTrigger, RemoveDuplicates 등의 노드를 사용하며인공지능 기술을 결합하여 스마트 자동화를 구현합니다. Gmail 지원 요청 메시지에서 Linear 이슈 자동 생성
사전 요구사항
- •Google 계정 및 Gmail API 인증 정보
- •OpenAI API Key
사용된 노드 (13)
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "408f9fb9940c3cb18ffdef0e0150fe342d6e655c3a9fac21f0f644e8bedabcd9",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "1c583599-826d-4a02-bfd9-f22f020f4af7",
"name": "스케줄 트리거",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-640,
-140
],
"parameters": {
"rule": {
"interval": [
{
"field": "hours"
}
]
}
},
"typeVersion": 1.2
},
{
"id": "aaddc5fd-4b05-4ee2-9f71-222b14fb05d6",
"name": "OpenAI 채팅 모델",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
280,
40
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4o-mini"
},
"options": {}
},
"credentials": {
"openAiApi": {
"id": "8gccIjcuf3gvaoEr",
"name": "OpenAi account"
}
},
"typeVersion": 1.2
},
{
"id": "cd2a47fb-3e04-464d-bcac-00e84952d72c",
"name": "구조화된 출력 파서",
"type": "@n8n/n8n-nodes-langchain.outputParserStructured",
"position": [
480,
40
],
"parameters": {
"schemaType": "manual",
"inputSchema": "{\n \"type\": \"object\",\n \"properties\": {\n \"labels\": {\n \"type\": \"array\",\n \"items\": { \"type\": \"string\" }\n },\n \"priority\": { \"type\": \"number\" },\n \"summary\": { \"type\": \"string\" },\n \"description\": { \"type\": \"string\" }\n }\n}"
},
"typeVersion": 1.2
},
{
"id": "48234689-66fd-4a5e-b940-5e6e07a95ad9",
"name": "스티키 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
0,
-340
],
"parameters": {
"color": 7,
"width": 700,
"height": 540,
"content": "## 2. Automate Generation and Triaging of Ticket\n[Read more about the Basic LLM node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm)\n\nNew tickets always need to be properly labelled and prioritised but it's not always possible to get to update all incoming tickets if you're light on hands. Using an AI is a great use-case for triaging of tickets as its contextual understanding helps automates this step."
},
"typeVersion": 1
},
{
"id": "c25fd99f-4898-479f-bf63-a79c3ca084fc",
"name": "마크다운",
"type": "n8n-nodes-base.markdown",
"position": [
100,
-140
],
"parameters": {
"html": "={{ $json.html }}",
"options": {}
},
"typeVersion": 1
},
{
"id": "b27f5e33-d149-4395-84b2-e1e1070c8a0b",
"name": "읽음으로 표시",
"type": "n8n-nodes-base.removeDuplicates",
"position": [
-220,
-140
],
"parameters": {
"options": {},
"operation": "removeItemsSeenInPreviousExecutions",
"dedupeValue": "={{ $json.id }}"
},
"typeVersion": 2
},
{
"id": "e282e452-0dbb-4d00-b319-13840264feda",
"name": "스티키 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-740,
-340
],
"parameters": {
"color": 7,
"width": 720,
"height": 540,
"content": "## 1. Watch Gmail Inbox for Support Emails\n[Learn more about the Gmail node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.gmail/)\n\n**This template assumes a group email specifically for support tickets!** If you have a general inbox, you may need to classify and filter each message which might become costly. The \"remove duplicates\" node (ie. \"Mark as seen\") ensures we only process each email exactly once."
},
"typeVersion": 1
},
{
"id": "d43db00e-bfd4-4b18-ad33-4bccb3373d09",
"name": "스티키 노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
720,
-340
],
"parameters": {
"color": 7,
"width": 460,
"height": 440,
"content": "## 3. Create Issue in Linear.App\n[Read more about the Linear.App node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.linear)\n\nThis is only a simple example to create an issue in Linear.App but easily extendable to add much more!"
},
"typeVersion": 1
},
{
"id": "13f657aa-5af1-4af4-af04-f81a13d2ce29",
"name": "스티키 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1160,
-720
],
"parameters": {
"width": 380,
"height": 940,
"content": "## Try It Out!\n### This n8n template watches a Gmail inbox for support messages and creates an equivalent issue item in Linear.\n\n### How it works\n* A scheduled trigger fetches recent Gmail messages from the inbox which collects support requests.\n* These support requests are filtered to ensure they are only processed once and their HTML body is converted to markdown for easier parsing.\n* Each support request is then triaged via an AI Agent which adds appropriate labels, assesses priority and summarises a title and description of the original request.\n* Finally, the AI generated values are used to create an issue in Linear to be actioned.\n\n### How to use\n* Ensure the messages fetched are solely support requests otherwise you'll need to classify messages before processing them.\n* Specify the labels and priorities to use in the system prompt of the AI agent.\n\n### Requirements\n* Gmail for incoming support messages\n* OpenAI for LLM\n* Linear for issue management\n\n### Customising this workflow\n* Consider automating more steps after the issue is created such as attempting issue resolution or capacity planning.\n\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!"
},
"typeVersion": 1
},
{
"id": "684a5300-41c9-4ec4-8780-d1797e4dcfa2",
"name": "지원 요청에서 이슈 생성",
"type": "@n8n/n8n-nodes-langchain.chainLlm",
"position": [
300,
-140
],
"parameters": {
"text": "=Reported by {{ $json.from.value[0].name }} <{{ $json.from.value[0].address }}>\nReported at: {{ $now.toISO() }}\nSummary: {{ $json.subject }}\nDescription:\n{{ $json.data.replaceAll('\\n', ' ') }}",
"messages": {
"messageValues": [
{
"message": "=Your are Issues triage assistant who's task is to\n1) classify and label the given issue.\n2) Prioritise the given issue.\n3) Rewrite the issue summary and description.\n\n## Labels\nUse one or more labels.\n* Technical\n* Account\n* Access\n* Billing\n* Product\n* Training\n* Feedback\n* Complaints\n* Security\n* Privacy\n\n## Priority\n* 1 - highest\n* 2 - high\n* 3 - medium\n* 4 - low\n* 5 - lowest\n\n## Write Summary and Description\n* Remove emotional and anedotal phrases or information\n* Keep to the facts of the matter\n* Highlight what was attempted and is/was failing"
}
]
},
"promptType": "define",
"hasOutputParser": true
},
"typeVersion": 1.6
},
{
"id": "50aa5f53-680a-4518-a3a5-b97c3bd82af3",
"name": "최근 메시지 가져오기",
"type": "n8n-nodes-base.gmail",
"position": [
-440,
-140
],
"webhookId": "f3528949-056d-4013-ab62-9694e72b38cd",
"parameters": {
"limit": 1,
"simple": false,
"filters": {
"q": "to:support@example.com"
},
"options": {},
"operation": "getAll"
},
"credentials": {
"gmailOAuth2": {
"id": "Sf5Gfl9NiFTNXFWb",
"name": "Gmail account"
}
},
"typeVersion": 2.1
},
{
"id": "a7a41e51-3852-43f3-98b9-d67bab4f8e41",
"name": "Linear.App에서 이슈 생성",
"type": "n8n-nodes-base.linear",
"position": [
900,
-140
],
"parameters": {
"title": "={{ $json.output.summary }}",
"teamId": "1c721608-321d-4132-ac32-6e92d04bb487",
"additionalFields": {
"stateId": "92962324-3d1f-4cf8-993b-0c982cc95245",
"priorityId": "={{ $json.output.priority ?? 3 }}",
"description": "={{ $json.output.description }}\n\n{{ $json.output.labels.map(label => `#${label}`).join(' ') }}"
}
},
"credentials": {
"linearApi": {
"id": "Nn0F7T9FtvRUtEbe",
"name": "Linear account"
}
},
"typeVersion": 1
},
{
"id": "4593cd01-8fa3-4828-ba77-21082a2f31fb",
"name": "스티키 노트4",
"type": "n8n-nodes-base.stickyNote",
"position": [
-500,
40
],
"parameters": {
"color": 5,
"height": 120,
"content": "### Gmail Filters\nHere we're using the filter `to:support@example.com` to capture support requests."
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"c25fd99f-4898-479f-bf63-a79c3ca084fc": {
"main": [
[
{
"node": "684a5300-41c9-4ec4-8780-d1797e4dcfa2",
"type": "main",
"index": 0
}
]
]
},
"b27f5e33-d149-4395-84b2-e1e1070c8a0b": {
"main": [
[
{
"node": "c25fd99f-4898-479f-bf63-a79c3ca084fc",
"type": "main",
"index": 0
}
]
]
},
"1c583599-826d-4a02-bfd9-f22f020f4af7": {
"main": [
[
{
"node": "50aa5f53-680a-4518-a3a5-b97c3bd82af3",
"type": "main",
"index": 0
}
]
]
},
"aaddc5fd-4b05-4ee2-9f71-222b14fb05d6": {
"ai_languageModel": [
[
{
"node": "684a5300-41c9-4ec4-8780-d1797e4dcfa2",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"50aa5f53-680a-4518-a3a5-b97c3bd82af3": {
"main": [
[
{
"node": "b27f5e33-d149-4395-84b2-e1e1070c8a0b",
"type": "main",
"index": 0
}
]
]
},
"cd2a47fb-3e04-464d-bcac-00e84952d72c": {
"ai_outputParser": [
[
{
"node": "684a5300-41c9-4ec4-8780-d1797e4dcfa2",
"type": "ai_outputParser",
"index": 0
}
]
]
},
"684a5300-41c9-4ec4-8780-d1797e4dcfa2": {
"main": [
[
{
"node": "a7a41e51-3852-43f3-98b9-d67bab4f8e41",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 지원, 인공지능
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Outlook 이메일 지원 요청에서 JIRA 이슈 자동 생성
Outlook 이메일 지원 요청에서 JIRA 이슈 자동 생성
Jira
Markdown
Schedule Trigger
+
Jira
Markdown
Schedule Trigger
12 노드Jimleuk
엔지니어링
지원 티켓 트라이어지 및 해결 자동화
JIRA 및 AI를 사용한 지원 티켓 트라이어지 및 해결 자동화
Set
Jira
Aggregate
+
Set
Jira
Aggregate
27 노드Jimleuk
지원
Slack 및 Linear을 사용한 고객 지원 채널 및 작업 시스템
Slack과 Linear을 사용한 고객 지원 채널 및 티켓 시스템
If
Set
Merge
+
If
Set
Merge
19 노드Jimleuk
지원
AI와 인간 협업 자동 후속 알림 (Gmail)
AI-인간 협업 자동 후속 알림 (Gmail)
Set
Gmail
Filter
+
Set
Gmail
Filter
22 노드Jimleuk
인공지능
JIRA, Supabase 및 AI를 사용하여 지원 티켓 자동 할당
JIRA, Supabase 및 AI를 사용하여 지원 티켓 자동 할당
If
Set
Jira
+
If
Set
Jira
36 노드Jimleuk
지원
AI와 APIFY를 사용한 영업 회의 준비 자동화 및 WhatsApp으로 발송
AI 및 APIFY를 사용한 영업 회의 준비 및 WhatsApp 전송 자동화
If
Set
Html
+
If
Set
Html
61 노드Jimleuk
영업
워크플로우 정보
난이도
중급
노드 수13
카테고리2
노드 유형9
저자
Jimleuk
@jimleukFreelance consultant based in the UK specialising in AI-powered automations. I work with select clients tackling their most challenging projects. For business enquiries, send me an email at hello@jimle.uk LinkedIn: https://www.linkedin.com/in/jimleuk/ X/Twitter: https://x.com/jimle_uk
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유