8
n8n 한국어amn8n.com

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)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수7
카테고리2
노드 유형7
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34