Development & IT Workflows
Software development and IT operations
Automate Lemlist Email Replies to Slack Notifications
This n8n workflow automates the process of sending email replies from Lemlist campaigns to your designated Slack channel. By integrating Lemlist with Slack, this workflow ensures that you never miss a reply from your outreach campaigns, streamlini...
n8n$15.99Automate Zillow Property Search with Budget Filtering to Google Sheets
Automates fetching Zillow real estate listings, filters by budget using custom criteria, and appends filtered data to Google Sheets for real-time tracking without duplicates.
n8n$13.99Auto-Generate Blog Posts with GPT, Leonardo AI & WordPress
Automates full blog post creation from a topic using GPT for content, Leonardo AI for images, and direct WordPress publishing with quality checks.
n8n$24.99Automate Coda Table Data Insertion with Manual Trigger
Easily insert data into a Coda table with this automated workflow, triggered manually for flexibility.
n8n$16.61Daily Weather Updates via Push Notification
This workflow automates the process of sending daily weather updates to users via push notifications using the Spontit platform. It integrates with OpenWeatherMap to fetch the current temperature for a specified city, in this case, Berlin, and the...
n8n$9.99Automated LLM Evaluation for Legal Benchmarking
Evaluates LLMs on legal test cases from Google Sheets using GPT-4 as judge, scoring pass/fail with reasons and logging results back to Sheets.
n8n$16.99AI Chatbot for Website with Cost-Efficient Conditional Execution
AI-powered website chatbot using Google Gemini that activates only on chat initiation to minimize token costs. Collects user details step-by-step for services like guest posting and IT consultancy.
n8n$19.99CO2 Emissions Tracker for Business Travels with Carbon Interface API & GPT-4o
Automates extraction of flight data from Gmail confirmations using GPT-4o AI, calculates CO2 emissions via Carbon Interface API, and logs to Google Sheets for sustainability reporting.
n8n$22.99Convert Documents to Podcast Audio with GPT-4o & OpenAI TTS
Automates transforming Google Drive documents into multi-speaker podcast episodes using GPT-4o for scripting and OpenAI TTS for audio generation.
n8n$24.99CV Resume PDF Parsing with Multimodal Vision AI
Automates secure PDF resume parsing using AI vision to bypass hidden prompts. Converts PDFs to images and processes with multimodal LLMs like Gemini for accurate extraction.
n8n$19.99DeepSeek AI Agent + Telegram Bot with Long-Term Memory
n8n workflow integrating DeepSeek AI with Telegram for personalized, context-aware chatbots using long-term memory and multi-message support.
n8n$24.99Automate Monitor Management with UptimeRobot in n8n
Efficiently create, update, and retrieve monitor details using UptimeRobot within n8n, streamlining your website monitoring processes.
n8n$3.99Trigger CircleCI Pipeline Execution Manually
Trigger a CircleCI pipeline on demand using this n8n workflow. A manual trigger lets you start a pipeline execution with one click, ideal for running tests or deployments when needed. No automation schedule required—just activate it from your n8n dashboard. Useful for developers who want manual control over CI/CD processes.
n8n$2.99Readable Workflow Export & Deployment Pipeline for Multi-Environment CI/CD
**This n8n workflow template uses community nodes and is only compatible with the self-hosted version of n8n.** ## Export workflows with readable names, tagged for different environments To ensure understandable workflow exports, ease of use in delivery pipelines, and a better developer experience, this workflow helps with exporting workflows. ## Inner workings - First, the workflow ensures that the directory structure for storing the workflows is correct. - Exports all workflows. - Next, it processes all workflow files and stores them with readable names. - Based on tags, it will also export to `dev` and `prod` folders for easy commit and usage in a delivery pipeline. ## Configuration No special setup is required for readable exporting. ## Usage Create a workflow and tag it with **Auto deploy to dev**. Run the workflow, this will create the needed folders and workflows with readable names. Commit these in your version control. Have a CI/CD pipeline build an n8n container. - See the attached Dockerfile. Check our **Auto Starter workflow** for auto-starting workflows after deployment. ## CI/CD Bonus: Attached are two nodes with some example configuration on building your own automated n8n deployment. - A Dockerfile, to get the new entrypoint and exported workflows packaged in the container. - An updated entrypoint to build your own container, import the workflows, and run the Auto Starter. Set the following environment variables: - `SARUP_WORKFLOWS_LOAD_LOCATION`: to specify the folder to import from and distinguish between environments. - `SARUP_WORKFLOW_ID`: the ID of the workflow to run after starting n8n. > **Note:** The Instance Started n8n trigger won't work, as all workflows are disabled upon import.
n8n$14.99Report N8N Workflow Errors to Slack
The 'Report N8N Workflow Errors to Slack' workflow is designed to streamline error communication within your development team. When an N8N workflow encounters an error, this automation triggers an alert that sends a detailed message to a specified...
n8n$4.99Automate Workflow Execution with Redis Locking
This workflow is designed to prevent concurrent executions of workflows by utilizing Redis as a locking mechanism. It effectively manages the execution of multiple workflows triggered by external events, ensuring that only one instance runs at a t...
n8n$19.99Automated Backup of Tagged n8n Workflows to GitLab
Automatically back up n8n workflows with specific tags to a GitLab repository, ensuring only new or modified workflows are committed.
n8n$14.99Automated Daily Order Retrieval and Reporting Workflow
The 'Automated Daily Order Retrieval and Reporting Workflow' is designed to streamline the process of fetching daily orders from Airtable, specifically targeting orders created yesterday. By leveraging n8n's powerful automation capabilities, this ...
n8n$4.19Backup Workflows to Git Repository on Gitea
#### **Overview** This workflow automates the backup of all workflows from your system to a **Git repository hosted on Gitea**. It runs on a **scheduled trigger**, fetching, encoding, and committing workflow data, ensuring seamless version control and disaster recovery. - **Quick Setup:** Just update three global variables and configure authentication—no manual exports needed! --- ### **How It Works (Quick Glance)** 1. **Scheduled Execution** — Runs automatically at defined intervals. 2. **Fetch Workflows** — Uses the API to retrieve all workflows. 3. **Process Workflows** — Converts workflow data into a **Git-friendly format**. 4. **Commit & Push to Git** — Saves workflows in a Gitea repository. --- ### **Setup Steps** (Takes ~5 min) #### **1. Set Global Variables** Go to the **Globals** section in the workflow and update: - **`repo.url`** — `https://your-gitea-instance.com` *(Replace with your actual Gitea URL)* - **`repo.name`** — `workflows` *(Repository name where backups will be stored)* - **`repo.owner`** — `octoleo` *(Gitea account that owns the repository)* - **These three variables define where the workflows are stored.** #### **2. Configure Gitea Authentication** - **Go to your Gitea account** — Generate a **Personal Access Token** - In the **credential manager**, create a **new Gitea token** with: - **Name:** `Authorization` - **Value:** `Bearer YOUR_PERSONAL_ACCESS_TOKEN` - **Ensure there is a space after `Bearer` before the token!** #### **3. Link Credentials to Git Nodes** Attach the Gitea credentials to these three Git nodes: - **GetGitea** — Retrieves existing repository data - **PutGitea** — Updates workflows - **PostGitea** — Adds new workflows #### **4. Link Credentials for API Requests** - **Add API authentication** in the node that fetches all workflows. #### **5. Test & Activate** - **Run the workflow manually** to confirm backups work. - Enable the **schedule trigger** for automation. - **The workflow automatically checks for changes before committing updates.** --- ### **Why Use This Workflow?** - **Automated Backups** — No manual exports needed. - **Version Control** — Easily track workflow changes. - **Simple Setup** — Just configure globals & credentials. - **Secure** — Uses token-based authentication. --- ### **Next Steps** - Have questions? **Reach out on the forum!**
n8n$14.99Airtable File Metadata Sync Workflow
The 'Airtable File Metadata Sync Workflow' is designed to streamline the process of sharing files stored in Google Drive while simultaneously capturing and storing relevant metadata in Airtable. This automation is particularly beneficial for teams...
n8n$12.99Automate Android Asset Sync from Figma to GitHub via Pull Request
This n8n workflow automates the process of fetching design assets from Figma, exporting them into Android drawable formats, and committing them to a GitHub branch, creating a Pull Request with all updates.
n8n$9.99Conversational Sales Agent for WooCommerce with GPT-4, Stripe & CRM
AI-powered sales assistant for WooCommerce that detects customer intent, searches products, generates Stripe payments, captures CRM leads, and escalates to humans with conversational memory.
n8n$24.99AI Lead Gen: Dumpling AI + GPT-4o Auto-Saves to Airtable
Automates local business lead generation using Dumpling AI agents for businesses and news, GPT-4o summarization, and Airtable storage for marketers and agencies.
n8n$24.99AI-Powered YouTube Video Summarization & Analysis Workflow
This workflow leverages AI technology to provide users with automated summarization and analysis of YouTube videos. By integrating a webhook, the workflow initiates upon receiving a YouTube URL, which is then processed to extract relevant content....
n8n$15.59
Related categories
Custom AI Systems & Services
Our team of experienced AI builders will help build custom AI systems, workflows, and solutions.
Request Custom Work