Back to Catalog

Generate professional changelogs from Git commits with GPT-4 and GitHub

Issam AGGOURIssam AGGOUR
100 views
2/3/2026
Official Page

AI-Powered Git Changelog Generator for Automated Release Notes

This workflow transforms your software release process by automatically generating clean, professional changelogs from your Git commit history. It listens for new version tags in your GitHub repository, uses AI to summarize the changes, and publishes a polished release note, saving you hours of manual work.

Disclaimer

This template is designed for self-hosted n8n instances and requires API credentials for GitHub and an AI provider (e.g., OpenAI, Google Gemini).

πŸš€ Key Features

  • Fully Automated Process: Triggers automatically on a git push --tags event. Set it up once and forget about it.
  • AI-Powered Summarization: Leverages a Large Language Model (LLM) to intelligently read, categorize, and summarize your commit messages into a human-friendly format.
  • Seamless GitHub Integration: Fetches commit data and creates official GitHub Releases without leaving the n8n environment.
  • Smart Categorization: Automatically groups release notes into sections like "Features," "Fixes," and "Other Changes" for clarity.
  • Highly Customizable: Easily adapt the AI prompt, changelog format, and release template to match your project's style.
  • Saves Developer Time: Eliminates the tedious, manual task of writing release notes, freeing up developers to focus on coding.

βš™οΈ How It Works

The workflow is a linear process triggered by a webhook from GitHub.

1. GitHub Webhook Trigger

  • A Webhook node is configured to listen for push events from your specified GitHub repository.
  • It is filtered to only run when a new tag (e.g., v1.2.0) is pushed, which is the standard practice for signaling a new release.

2. Fetch Commit History

  • Once triggered, a GitHub node uses the webhook payload to identify the repository and the new tag.
  • It makes an API call to GitHub to compare the new tag with the most recent previous tag, fetching all the commit messages in between.

3. AI Summarization

  • The list of raw commit messages is passed to an AI node (e.g., OpenAI or Google Gemini).
  • A pre-defined prompt instructs the AI to process the commits. The prompt asks the model to summarize the changes and group them into logical categories.
  • The AI returns a single, well-formatted markdown text block representing the complete changelog.

4. GitHub Release Creation

  • The final GitHub node takes the AI-generated markdown.
  • It creates a new GitHub Release, using the tag from the webhook as the release version and the AI-generated text as the release body/description.

πŸ› οΈ Setup Steps & Credentials

To get this workflow running, you will need to configure the following credentials and settings:

  1. GitHub:
    • You need a GitHub Personal Access Token with repo scope to allow n8n to access your repository.
    • Create a GitHub OAuth2 Api or GitHub Api credential in n8n.
    • Assign this credential to the Get Commits and Create GitHub Release nodes.
    • In the Webhook node, copy the Test URL and add it as a new webhook in your GitHub repository's settings (Settings > Webhooks). Set the content type to application/json and select "Just the push event" or "Send me everything," then filter for tag pushes in the workflow itself.
  2. AI Provider (OpenAI / Gemini):
    • Obtain an API Key from your chosen AI provider (e.g., platform.openai.com or aistudio.google.com).
    • Create the corresponding credential in n8n (e.g., OpenAI API or Google Gemini(PaLM) Api).
    • Assign this credential to the Generate Changelog with AI node.

πŸ’‘ Customization & Learning

This workflow is a powerful base that you can easily extend:

  • Refine the AI Prompt: Modify the prompt in the Generate Changelog with AI node to change the tone, language, or structure of your release notes. You could ask it to generate a "What's New" section in a different style, for example.
  • Add Notifications: Extend the workflow by adding a Discord or Slack node after the final step to notify your team or community channel that a new version has been released.
  • Support Different Git Providers: Swap the GitHub nodes for GitLab or other provider nodes to adapt the workflow to a different platform.
  • Experiment with Models: Try different AI models (e.g., GPT-4 vs. GPT-3.5-Turbo, or different Gemini versions) to see how it affects the quality and cost of your generated changelogs.

Generate Professional Changelogs from Git Commits with GPT-4 and GitHub

This n8n workflow automates the creation of professional changelogs by leveraging GitHub commit data and OpenAI's GPT-4. It listens for new commits on a specified GitHub repository, extracts the commit messages, and then uses an AI agent to generate a structured and user-friendly changelog entry.

What it does

  1. Monitors GitHub Commits: Triggers automatically whenever a new commit is pushed to a configured GitHub repository.
  2. Analyzes Commit Data: Captures details about the new commit, including the commit message.
  3. Generates Changelog Entry with AI: Uses an OpenAI Chat Model (GPT-4) within an AI Agent to interpret the commit message and generate a professional, human-readable changelog entry.
  4. Stores Conversation History: Utilizes a simple memory buffer to maintain context for the AI agent, allowing for more coherent and relevant changelog generation over time.

Prerequisites/Requirements

  • n8n Instance: A running n8n instance (cloud or self-hosted).
  • GitHub Account: With access to the repository you wish to monitor.
  • GitHub Credential: Configured in n8n to allow the workflow to listen for events and potentially interact with your repository.
  • OpenAI API Key: For the OpenAI Chat Model, providing access to GPT-4.
  • OpenAI Credential: Configured in n8n with your OpenAI API Key.

Setup/Usage

  1. Import the Workflow: Download the provided JSON and import it into your n8n instance.
  2. Configure GitHub Trigger:
    • Select your GitHub credential.
    • Specify the "Repository" you want to monitor for new commits.
    • Choose "Push" as the event type.
    • Activate the workflow.
  3. Configure OpenAI Chat Model:
    • Select your OpenAI credential.
    • Ensure the model is set to a capable model like gpt-4 or gpt-3.5-turbo.
  4. Activate the Workflow: Once configured, activate the workflow. It will now automatically generate changelog entries for new commits.

Note: The current workflow only generates the changelog entry. To make it truly useful, you would typically extend it to:

  • Write the generated changelog entry to a file (e.g., CHANGELOG.md in the repository).
  • Create a new GitHub release or pull request with the changelog.
  • Post the changelog to a communication channel (e.g., Slack, Discord).

Related Templates

Generate song lyrics and music from text prompts using OpenAI and Fal.ai Minimax

Spark your creativity instantly in any chatβ€”turn a simple prompt like "heartbreak ballad" into original, full-length lyrics and a professional AI-generated music track, all without leaving your conversation. πŸ“‹ What This Template Does This chat-triggered workflow harnesses AI to generate detailed, genre-matched song lyrics (at least 600 characters) from user messages, then queues them for music synthesis via Fal.ai's minimax-music model. It polls asynchronously until the track is ready, delivering lyrics and audio URL back in chat. Crafts original, structured lyrics with verses, choruses, and bridges using OpenAI Submits to Fal.ai for melody, instrumentation, and vocals aligned to the style Handles long-running generations with smart looping and status checks Returns complete song package (lyrics + audio link) for seamless sharing πŸ”§ Prerequisites n8n account (self-hosted or cloud with chat integration enabled) OpenAI account with API access for GPT models Fal.ai account for AI music generation πŸ”‘ Required Credentials OpenAI API Setup Go to platform.openai.com β†’ API keys (sidebar) Click "Create new secret key" β†’ Name it (e.g., "n8n Songwriter") Copy the key and add to n8n as "OpenAI API" credential type Test by sending a simple chat completion request Fal.ai HTTP Header Auth Setup Sign up at fal.ai β†’ Dashboard β†’ API Keys Generate a new API key β†’ Copy it In n8n, create "HTTP Header Auth" credential: Name="Fal.ai", Header Name="Authorization", Header Value="Key [Your API Key]" Test with a simple GET to their queue endpoint (e.g., /status) βš™οΈ Configuration Steps Import the workflow JSON into your n8n instance Assign OpenAI API credentials to the "OpenAI Chat Model" node Assign Fal.ai HTTP Header Auth to the "Generate Music Track", "Check Generation Status", and "Fetch Final Result" nodes Activate the workflowβ€”chat trigger will appear in your n8n chat interface Test by messaging: "Create an upbeat pop song about road trips" 🎯 Use Cases Content Creators: YouTubers generating custom jingles for videos on the fly, streamlining production from idea to audio export Educators: Music teachers using chat prompts to create era-specific folk tunes for classroom discussions, fostering interactive learning Gift Personalization: Friends crafting anniversary R&B tracks from shared memories via quick chats, delivering emotional audio surprises Artist Brainstorming: Songwriters prototyping hip-hop beats in real-time during sessions, accelerating collaboration and iteration ⚠️ Troubleshooting Invalid JSON from AI Agent: Ensure the system prompt stresses valid JSON; test the agent standalone with a sample query Music Generation Fails (401/403): Verify Fal.ai API key has minimax-music access; check usage quotas in dashboard Status Polling Loops Indefinitely: Bump wait time to 45-60s for complex tracks; inspect fal.ai queue logs for bottlenecks Lyrics Under 600 Characters: Tweak agent prompt to enforce fuller structures like [V1][C][V2][B][C]; verify output length in executions

Daniel NkenchoBy Daniel Nkencho
601

Auto-reply & create Linear tickets from Gmail with GPT-5, gotoHuman & human review

This workflow automatically classifies every new email from your linked mailbox, drafts a personalized reply, and creates Linear tickets for bugs or feature requests. It uses a human-in-the-loop with gotoHuman and continuously improves itself by learning from approved examples. How it works The workflow triggers on every new email from your linked mailbox. Self-learning Email Classifier: an AI model categorizes the email into defined categories (e.g., Bug Report, Feature Request, Sales Opportunity, etc.). It fetches previously approved classification examples from gotoHuman to refine decisions. Self-learning Email Writer: the AI drafts a reply to the email. It learns over time by using previously approved replies from gotoHuman, with per-classification context to tailor tone and style (e.g., different style for sales vs. bug reports). Human Review in gotoHuman: review the classification and the drafted reply. Drafts can be edited or retried. Approved values are used to train the self-learning agents. Send approved Reply: the approved response is sent as a reply to the email thread. Create ticket: if the classification is Bug or Feature Request, a ticket is created by another AI agent in Linear. Human Review in gotoHuman: How to set up Most importantly, install the gotoHuman node before importing this template! (Just add the node to a blank canvas before importing) Set up credentials for gotoHuman, OpenAI, your email provider (e.g. Gmail), and Linear. In gotoHuman, select and create the pre-built review template "Support email agent" or import the ID: 6fzuCJlFYJtlu9mGYcVT. Select this template in the gotoHuman node. In the "gotoHuman: Fetch approved examples" http nodes you need to add your formId. It is the ID of the review template that you just created/imported in gotoHuman. Requirements gotoHuman (human supervision, memory for self-learning) OpenAI (classification, drafting) Gmail or your preferred email provider (for email trigger+replies) Linear (ticketing) How to customize Expand or refine the categories used by the classifier. Update the prompt to reflect your own taxonomy. Filter fetched training data from gotoHuman by reviewer so the writer adapts to their personalized tone and preferences. Add more context to the AI email writer (calendar events, FAQs, product docs) to improve reply quality.

gotoHumanBy gotoHuman
353

Dynamic Hubspot lead routing with GPT-4 and Airtable sales team distribution

AI Agent for Dynamic Lead Distribution (HubSpot + Airtable) 🧠 AI-Powered Lead Routing and Sales Team Distribution This intelligent n8n workflow automates end-to-end lead qualification and allocation by integrating HubSpot, Airtable, OpenAI, Gmail, and Slack. The system ensures that every new lead is instantly analyzed, scored, and routed to the best-fit sales representative β€” all powered by AI logic, sir. --- πŸ’‘ Key Advantages ⚑ Real-Time Lead Routing Automatically assigns new leads from HubSpot to the most relevant sales rep based on region, capacity, and expertise. 🧠 AI Qualification Engine An OpenAI-powered Agent evaluates the lead’s industry, region, and needs to generate a persona summary and routing rationale. πŸ“Š Centralized Tracking in Airtable Every lead is logged and updated in Airtable with AI insights, rep details, and allocation status for full transparency. πŸ’¬ Instant Notifications Slack and Gmail integrations alert the assigned rep immediately with full lead details and AI-generated notes. πŸ” Seamless CRM Sync Updates the original HubSpot record with lead persona, routing info, and timeline notes for audit-ready history, sir. --- βš™οΈ How It Works HubSpot Trigger – Captures a new lead as soon as it’s created in HubSpot. Fetch Contact Data – Retrieves all relevant fields like name, company, and industry. Clean & Format Data – A Code node standardizes and structures the data for consistency. Airtable Record Creation – Logs the lead data into the β€œLeads” table for centralized tracking. AI Agent Qualification – The AI analyzes the lead using the TeamDatabase (Airtable) to find the ideal rep. Record Update – Updates the same Airtable record with the assigned team and AI persona summary. Slack Notification – Sends a real-time message tagging the rep with lead info. Gmail Notification – Sends a personalized handoff email with context and follow-up actions. HubSpot Sync – Updates the original contact in HubSpot with the assignment details and AI rationale, sir. --- πŸ› οΈ Setup Steps Trigger Node: HubSpot β†’ Detect new leads. HubSpot Node: Retrieve complete lead details. Code Node: Clean and normalize data. Airtable Node: Log lead info in the β€œLeads” table. AI Agent Node: Process lead and match with sales team. Slack Node: Notify the designated representative. Gmail Node: Email the rep with details. HubSpot Node: Update CRM with AI summary and allocation status, sir. --- πŸ” Credentials Required HubSpot OAuth2 API – To fetch and update leads. Airtable Personal Access Token – To store and update lead data. OpenAI API – To power the AI qualification and matching logic. Slack OAuth2 – For sending team notifications. Gmail OAuth2 – For automatic email alerts to assigned reps, sir. --- πŸ‘€ Ideal For Sales Operations and RevOps teams managing multiple regions B2B SaaS and enterprise teams handling large lead volumes Marketing teams requiring AI-driven, bias-free lead assignment Organizations optimizing CRM efficiency with automation, sir --- πŸ’¬ Bonus Tip You can easily extend this workflow by adding lead scoring logic, language translation for follow-ups, or Salesforce integration. The entire system is modular β€” perfect for scaling across global sales teams, sir.

MANISH KUMARBy MANISH KUMAR
113