If you're a content creator, blogger, or marketer, you know that publishing a blog post is only half the job. Getting eyeballs on it is the rest—and that usually means promoting it across channels like LinkedIn.

But posting manually every time? Waste of time. You can set up an RSS-to-LinkedIn automation once and forget about it. Here's how to do it for free using Make.com.

🔧 What This Workflow Does

Every time you publish a new article on your blog (or any platform with an RSS feed), this automation:

  1. Checks the RSS feed for new posts.

  2. Formats the post title and link.

  3. Publishes it directly to your LinkedIn account.

Simple, clean, and automatic.

🛠 Tools You’ll Need

🧩 Workflow Setup (Step-by-Step)

1. Create a Scenario in Make

  1. Go to Make.com and log in.

  2. Click Create a new scenario.

  3. Add these modules:

    • RSS > Watch RSS feed items

    • LinkedIn > Create a Share Update

2. Configure the RSS Module

3. Configure the LinkedIn Module

New blog post: {{title}}
Read here: {{link}}

You can add hashtags here too.

📦 Sample JSON Blueprint (Make.com)

Here’s a JSON scenario blueprint you can import directly into Make.com:

{
  "name": "RSS to LinkedIn Auto Poster",
  "flow": [
    {
      "module": "rss:watchFeed",
      "name": "Watch RSS Feed Items",
      "parameters": {
        "feed_url": "https://example.com/rss",
        "limit": 1
      }
    },
    {
      "module": "linkedin:createShareUpdate",
      "name": "Post to LinkedIn",
      "parameters": {
        "author": "urn:li:person:YOUR_LINKEDIN_ID",
        "lifecycleState": "PUBLISHED",
        "specificContent": {
          "com.linkedin.ugc.ShareContent": {
            "shareCommentary": {
              "text": "New blog post: {{title}}\nRead here: {{link}}\n#RSSAutomation #ContentMarketing #Makecom"
            },
            "shareMediaCategory": "NONE"
          }
        },
        "visibility": {
          "com.linkedin.ugc.MemberNetworkVisibility": "PUBLIC"
        }
      }
    }
  ]
}

Note: Replace "https://example.com/rss" with your actual RSS feed and "urn:li:person:YOUR_LINKEDIN_ID" with your LinkedIn profile URN (you can get this from Make when connecting your LinkedIn account).

💡 Pro Tips

✅ Why Use This?

You create. It shares.

No-Code Alternative (Free)

RSS-to-LinkedIn posting can be configured in Make using feed watchers and LinkedIn publishing modules. You can explore it here (free account): https://www.make.com/en/register?pc=rohit9910

🏁 Final Thoughts

Automation doesn’t have to be complex or expensive. Using Make and a simple RSS-to-LinkedIn workflow, you can get your content in front of your audience with zero extra effort.