n8n_check
중급
이것은Engineering, IT Ops분야의자동화 워크플로우로, 7개의 노드를 포함합니다.주로 If, Cron, AwsSes, Function, Telegram 등의 노드를 사용하며. RSS, 이메일 및 Telegram을 통해 새로운 n8n 주요 버전 출시 자동 알림
사전 요구사항
- •AWS Access Key와 Secret
- •Telegram Bot Token
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "33",
"name": "n8n_check",
"nodes": [
{
"name": "실행 클릭 시",
"type": "n8n-nodes-base.manualTrigger",
"position": [
-520,
250
],
"parameters": {},
"typeVersion": 1,
"id": "--0"
},
{
"name": "RSS 피드 읽기",
"type": "n8n-nodes-base.rssFeedRead",
"position": [
-320,
260
],
"parameters": {
"url": "https://github.com/n8n-io/n8n/releases.atom"
},
"typeVersion": 1,
"id": "RSS--1"
},
{
"name": "IF",
"type": "n8n-nodes-base.if",
"position": [
70,
260
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$node[\"Filter by current day\"].json[\"data\"]}}",
"value2": "/.+/",
"operation": "regex"
}
]
}
},
"typeVersion": 1,
"id": "IF-2"
},
{
"name": "Cron",
"type": "n8n-nodes-base.cron",
"position": [
-520,
421
],
"parameters": {
"triggerTimes": {
"item": [
{
"mode": "custom",
"cronExpression": "0 0 10,14,18 * * *"
}
]
}
},
"typeVersion": 1,
"id": "Cron-3"
},
{
"name": "현재 날짜로 필터링",
"type": "n8n-nodes-base.function",
"position": [
-120,
260
],
"parameters": {
"functionCode": "var d = new Date();\nvar year = d.getFullYear();\nvar month = d.getMonth() + 1;\nvar day = d.getDate();\nvar hour = d.getHours() - 4;//Publication in last 4 hours\n\nmonth = month < 10 ? \"0\" + month : month;\nday = day < 10 ? \"0\" + day : day;\nhour = hour < 10 ? \"0\" + hour : hour;\n\nvar lines = items.filter(function(item) {\n //var str = year + \"-\" + month + \"-\" + day + \"T\" + hour;\n var str = year + \"-\" + month + \"-\" + day + \"T\" + hour;\n //return true;//item.json.pubDate.indexOf(str) !== -1 && item.json.title.indexOf(\"n8n@\") !== -1;\n return item.json.pubDate.indexOf(str) !== -1 && item.json.title.indexOf(\"n8n@\") !== -1 && item.json.title.indexOf(\".0\") !== -1;\n}).map(function(item) {\n return item.json.title;\n}).join(\"\\n\");\n\n\nreturn [\n {\n json: {\n date: year + \"-\" + month + \"-\" + day + \" \" + hour,\n data: lines && lines.length ? \"New release on n8n:\\n\" + lines : \"\"\n }\n }\n]"
},
"typeVersion": 1,
"id": "--4"
},
{
"name": "Telegram",
"type": "n8n-nodes-base.telegram",
"position": [
300,
280
],
"parameters": {
"text": "={{$node[\"Filter by current day\"].json[\"data\"]}}",
"chatId": "-1001235337538",
"additionalFields": {
"parse_mode": "HTML"
}
},
"credentials": {
"telegramApi": "it-killia-bot"
},
"typeVersion": 1,
"id": "Telegram-5"
},
{
"name": "AWS SES",
"type": "n8n-nodes-base.awsSes",
"position": [
300,
110
],
"parameters": {
"body": "={{$node[\"Filter by current day\"].json[\"data\"]}}",
"subject": "New n8n version",
"fromEmail": "myemail@mydomain.com",
"isBodyHtml": true,
"toAddresses": [
"myemail@mydomain.com"
],
"additionalFields": {}
},
"credentials": {
"aws": "ses"
},
"typeVersion": 1,
"id": "AWS-SES-6"
}
],
"active": true,
"settings": {},
"connections": {
"IF-2": {
"main": [
[
{
"node": "Telegram-5",
"type": "main",
"index": 0
},
{
"node": "AWS-SES-6",
"type": "main",
"index": 0
}
]
]
},
"Cron-3": {
"main": [
[
{
"node": "RSS--1",
"type": "main",
"index": 0
}
]
]
},
"RSS--1": {
"main": [
[
{
"node": "--4",
"type": "main",
"index": 0
}
]
]
},
"--4": {
"main": [
[
{
"node": "IF-2",
"type": "main",
"index": 0
}
]
]
},
"--0": {
"main": [
[
{
"node": "RSS--1",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 엔지니어링, IT 운영
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
우아한 콘텐츠 자극 — RSS → Notion (n8n)
RSS 소스를 일일 콘텐츠 아이디어로 정리하고, 이메일로 전송하여 Notion과 Telegram 옵션 지원
If
Set
Cron
+
If
Set
Cron
20 노드Shelly-Ann Davy
콘텐츠 제작
AI 스마트 어시스턴트: Supabase 스토리지 및 Google Drive 파일과 대화
AI스마트어시스턴트:与Supabase存储및Google Drive文件对话
If
Set
Wait
+
If
Set
Wait
62 노드Mark Shcherbakov
엔지니어링
Supabase 스토리지 내 파일과 대화하는 AI 에이전트
与Supabase存储中文件对话의AI스마트体
If
Merge
Switch
+
If
Merge
Switch
33 노드Mark Shcherbakov
엔지니어링
에이전트 접근 제어 템플릿
사용Airtable및Telegram의AI에이전트访问控制(RBAC)
If
Set
Airtable
+
If
Set
Airtable
36 노드Mario
엔지니어링
에러를 기록하고 이메일을 많이 보내지 않도록 합니다
PostgreSQL 로그 기록과 제한 속도 알림을 포함한 에러 처리 시스템
If
Code
Postgres
+
If
Code
Postgres
16 노드Davi Saranszky Mesquita
엔지니어링
DNS 항목 가져오기
uProc을 사용하여 모든 도메인의 DNS 항목 가져오기
Uproc
Function Item
Manual Trigger
Uproc
Function Item
Manual Trigger
3 노드Miquel Colomer
IT 운영