🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

GitHub to Telegram, AI digests you will actually read

Lisa Granqvist Partner Workflow Automation Expert

You check GitHub “later,” then later becomes never. Pull requests pile up, breaking changes sneak in, and the only people who feel confident are the ones who live inside the repo all day.

Engineering managers get blindsided in standups. DevOps leads end up playing messenger. And product folks still need the gist without reading 30 comments. This GitHub Telegram digest automation fixes that by turning new PRs into one clear daily summary you will actually read.

You’ll set up an n8n workflow that checks the n8n GitHub repo every morning, filters to today’s pull requests, generates an AI summary, then posts it straight into Telegram.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: GitHub to Telegram, AI digests you will actually read

Why This Matters: Pull Requests Don’t “Keep You Updated”

Most teams don’t miss important repo updates because they’re careless. They miss them because PR information is scattered, noisy, and timed badly. A new pull request might be relevant to your workflows, your integrations, or your release schedule, but the signal is buried under labels, long descriptions, CI output, and side conversations. So you skim. Then you forget. Then something changes in production and everyone swears it “wasn’t communicated.” Honestly, it probably was. It was just communicated in the least readable place possible.

It adds up fast. Here’s where the friction compounds.

  • People keep opening GitHub just to “check updates,” which turns into 20 minutes of tab hopping.
  • Important PRs get missed because they don’t look urgent until they break something.
  • Context gets lost when someone forwards a link without explaining why it matters to the rest of the team.
  • Status meetings turn into catch-up sessions, because nobody has a shared, readable summary.

What You’ll Build: A Daily AI PR Digest Posted to Telegram

This workflow runs on a simple schedule: every morning at 10 AM, it checks the n8n GitHub repository for the latest pull requests. It immediately filters down to only the PRs created today, so you’re not re-reading yesterday’s news. Then it takes the useful parts of each PR (title, description, and summary fields you choose), packages them into a clean input, and hands that to an AI agent powered by an OpenAI chat model. Finally, it posts a single, readable digest message into your Telegram channel so the whole team sees the same update at the same time.

The workflow starts with the scheduled trigger and a GitHub fetch. Next, n8n filters and maps only the PR data you care about. AI turns it into plain-English clarity, then Telegram delivers it where your team already pays attention.

What You’re Building

Expected Results

Say your team checks GitHub updates twice a day and spends about 10 minutes each time skimming PRs, comments, and descriptions. That’s roughly 20 minutes per person per day, and on a team of 6 it turns into about 2 hours of attention gone. With this workflow, the “checking” becomes zero: you still get the same awareness, but it lands as one Telegram message. Most people read it in a minute, click through only when something is actually relevant.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • GitHub for reading pull requests from a repo
  • Telegram to deliver the digest to a channel
  • OpenAI API key (get it from the OpenAI dashboard)

Skill level: Beginner. You’ll connect accounts, paste an API key, and tweak a prompt.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

A scheduled check runs each morning. The workflow uses a schedule trigger set for 10 AM, so you get updates at a predictable time instead of random pings all day.

GitHub pull requests are retrieved and narrowed down. n8n pulls the latest PRs from the n8n repository, then filters to only the ones created “today,” which keeps the final message short.

Key PR details are cleaned up for summarization. A “set/edit fields” step maps PR titles and descriptions into a consistent structure, so the AI agent doesn’t get confused by missing fields.

AI writes the digest and Telegram posts it. The workflow sends the mapped PR data into an AI chain using an OpenAI chat model, then publishes the final summary to your Telegram channel as one digest message.

You can easily modify the schedule time or which repositories you watch based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Scheduled Morning Trigger

Set the workflow to run automatically each morning so it can fetch new GitHub updates.

  1. Add the Scheduled Morning Trigger node.
  2. Set the schedule rule to run at 10 by configuring Trigger At Hour to 10.
  3. Connect Scheduled Morning Trigger to Retrieve Latest PR.

If your timezone differs from the n8n server timezone, adjust Trigger At Hour accordingly to hit your local morning schedule.

Step 2: Connect GitHub and Filter Today’s PRs

Retrieve the most recent pull request and keep only items created today.

  1. Add the Retrieve Latest PR node and set Resource to repository and Operation to getPullRequests.
  2. Set Limit to 1, Owner to https://github.com/n8n-io, and Repository to n8n.
  3. Credential Required: Connect your githubApi credentials in Retrieve Latest PR.
  4. Add Filter Today's PRs and set the condition to compare leftValue ={{ $json.created_at }} with rightValue ={{ $today }} using the after dateTime operator.
  5. Connect Retrieve Latest PRFilter Today's PRs.

⚠️ Common Pitfall: If your repository uses timezones different from the server, today’s filter may exclude recent PRs. Consider adjusting the comparison logic if you see missing updates.

Step 3: Map the PR Summary for AI Processing

Extract the pull request body into a clean summary field for the AI chain.

  1. Add the Map PR Summary node.
  2. Create a string field named Summary and set its Value to ={{ $json.body }}.
  3. Connect Filter Today's PRsMap PR Summary.

Step 4: Set Up the AI Digest Generation

Use the AI chain to transform the PR summary into a formatted Telegram update.

  1. Add the Create AI Digest node and set Prompt Type to define.
  2. Set the Text field to =Here is the update to process: {{ $json.Summary }} Release date of this update: {{ $('Retrieve Latest PR').item.json.created_at }}.
  3. Ensure the message prompt content includes the detailed role/instructions as defined in the node’s messages configuration.
  4. Add the OpenAI Chat Engine node as the language model connection for Create AI Digest.
  5. Credential Required: Connect your openAiApi credentials in OpenAI Chat Engine.
  6. Connect Map PR SummaryCreate AI Digest.

The OpenAI Chat Engine node is connected as the language model for Create AI Digest—add credentials to OpenAI Chat Engine, not the chain node.

Step 5: Configure Telegram Output

Send the AI-generated update to your Telegram channel or user.

  1. Add the Post to Telegram node.
  2. Set Text to ={{ $json.text }} and Chat ID to [YOUR_ID].
  3. In Additional Fields, set parse_mode to HTML and appendAttribution to false.
  4. Credential Required: Connect your telegramApi credentials in Post to Telegram.
  5. Connect Create AI DigestPost to Telegram.

Step 6: Test and Activate Your Workflow

Run a test to confirm the entire flow works, then activate it for daily use.

  1. Click Execute Workflow to run a manual test from Scheduled Morning Trigger.
  2. Verify Retrieve Latest PR outputs a PR, and Filter Today's PRs passes items created today.
  3. Confirm Create AI Digest outputs a formatted message and Post to Telegram posts it to your chat.
  4. When successful, toggle the workflow to Active to enable daily automated alerts.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • GitHub credentials can expire or need specific permissions. If things break, check the n8n credential you selected in the GitHub node first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Quick Answers

What’s the setup time for this GitHub Telegram digest automation?

About 30 minutes if your GitHub, Telegram, and OpenAI accounts are ready.

Is coding required for this PR digest outcome?

No. You’ll connect credentials and adjust a prompt. The logic is already built into the workflow.

Is n8n free to use for this GitHub Telegram digest workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs, which are usually a few cents per digest.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I modify this GitHub Telegram digest workflow for different use cases?

Yes, and it’s the best part. You can swap the “Retrieve Latest PR” node to point at your own repositories, then adjust “Filter Today’s PRs” to look back a week if you prefer weekly summaries. In “Map PR Summary,” include labels, authors, or links if your team needs more context. You can also change the AI prompt in “Create AI Digest” to produce a non-technical version for leadership, or a more technical one for engineers.

Why is my GitHub connection failing in this workflow?

Usually it’s an expired token or missing repo permissions.

What volume can this GitHub Telegram digest workflow process?

Practically, it can handle “normal repo” volume without issues: dozens of PRs in a day are fine, because it summarizes text, not huge files. On n8n Cloud, your limit is based on monthly executions (Starter is fine for daily digests). If you self-host, there’s no execution cap, so it mostly depends on server resources and API rate limits. If you start summarizing hundreds of PRs daily, you’ll want batching and a slightly stricter filter.

Is this GitHub Telegram digest automation better than using Zapier or Make?

Often, yes, because n8n handles filtering, mapping, and more complex logic without forcing you into expensive task counts. It also supports self-hosting, which is a big deal if you want predictable costs and more control. Zapier and Make can still work for simple “new PR → send message” alerts, but those alerts get noisy fast. The AI digest step is where the value is, and n8n gives you more flexibility to shape the prompt and the output format. If you’re torn, Talk to an automation expert and you’ll get a clear recommendation.

Once this is running, PR awareness stops being a daily chore. You get one clean update in Telegram, and your brain stays on real work.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal