Skip to main content

Auto-post Dev.to articles to LinkedIn with Airtable tracking & Telegram alerts

Workflow preview

Workflow preview
100%
Auto-post Dev.to articles to LinkedIn with Airtable tracking & Telegram alerts preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Problem This Solves: For developers and creators, consistently posting quality content on LinkedIn can be time consuming. This workflow automates the process by: Fetching the latest Dev.to artic...

Best for

  • Social Media automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.airtable, n8n-nodes-base.code, n8n-nodes-base.httprequest, n8n-nodes-base.filter, n8n-nodes-base.telegram, n8n-nodes-base.scheduletrigger, n8n-nodes-base.linkedin, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Krishna Kumar Eswaran.

Original n8n.io source

1.1 Workflow description

Title
Auto-post Dev.to articles to LinkedIn with Airtable tracking & Telegram alerts
Workflow name
Auto-post Dev.to articles to LinkedIn with Airtable tracking & Telegram alerts

🧠 Problem This Solves: For developers and creators, consistently posting quality content on LinkedIn can be time-consuming. This workflow automates the process by:

Fetching the latest Dev.to articles

Posting them to LinkedIn twice daily

Preventing duplicates using Airtable

Sending success alerts to Telegram

This ensures you're always active on LinkedIn, with zero manual effort.

👥 Who This Template Is For Developers who want to build their presence on LinkedIn

Tech creators or solo founders looking to grow an audience

Community/page managers who want regular, curated content

Busy professionals aiming for consistent LinkedIn engagement without doing it manually

⚙️ Workflow Breakdown This automation runs twice a day (9:00 AM and 7:00 PM) and performs the following steps:

Fetches Dev.to articles based on a tag

Checks Airtable to avoid reposting the same article

Posts to LinkedIn if it’s new

Sends a Telegram message after posting successfully

🧩 Step-by-Step Setup Instructions ✅ 1. Airtable Configuration Create a new base in Airtable with just one table and one column:

Table Name: PostedArticles

Column:

ArticleID (Single line text – stores the unique ID of each Dev.to article posted)

This column is used to track posted articles and prevent duplicates.

🔗 2. Dev.to API Setup Use the following endpoint in the HTTP Request node:

arduino Copy Edit https://dev.to/api/articles?tag=YOUR_TAG_HERE&per_page=10 Replace YOUR_TAG_HERE with a tag like android, webdev, ai, etc.

💬 3. Telegram Bot Setup Open @BotFather in Telegram and create a new bot

Save the bot token

Get your chat ID using @userinfobot or via Telegram API

Add a Telegram node in n8n using this token and chat ID

This will notify you when a post is successfully published.

🧾 4. LinkedIn Setup Create a LinkedIn Developer App

Use OAuth2 to connect it in n8n

Choose to post on either a user profile or a company page

🧱 5. n8n Workflow Structure Here’s the basic structure of the workflow:

Cron Node – Triggers at 9:00 AM and 7:00 PM daily

HTTP Request – Fetches latest articles from Dev.to

Airtable Search – Checks if ArticleID already exists

IF Node – Filters new vs. already-posted articles

LinkedIn Post – Publishes new article

Airtable Create – Saves the new ArticleID

Telegram Message – Sends success confirmation

🛠️ Customization Tips Change the Dev.to tag in the API URL

Modify LinkedIn post format (add hashtags, emojis, personal notes)

Adjust posting times in the Cron node

Use additional filters (e.g., only post articles with a cover image or certain word count)

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Get List of records used

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 2 - Update the used node

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 3 - map used articls ids

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 4 - fetch articles from Url

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 5 - filter only unused Ids

Type / Role
n8n-nodes-base.filter - filter
Config choices
Version 2.2

Block 6 - get random articles

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 7 - get random tags

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - sent the status

Type / Role
n8n-nodes-base.telegram - telegram
Config choices
Version 1.2

Block 9 - Morning 9 Clock

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 10 - download image for post

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 11 - make Linkedin post

Type / Role
n8n-nodes-base.linkedIn - linkedIn
Config choices
Version 1

Block 12 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Auto-post Dev.to articles to LinkedIn with Airtable tracking & Telegram alerts
Complexity intermediate
Nodes 13
Categories Social Media
Author Krishna Kumar Eswaran
Published 06 May 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/3883/3883.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Auto-post Dev.to articles to LinkedIn with Airtable tracking & Telegram alerts do?

Problem This Solves: For developers and creators, consistently posting quality content on LinkedIn can be time consuming. This workflow automates the process by: Fetching the latest Dev.to artic...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Social Media use case.