Block 1 - Listen for Trigger from Github Workflow
- Type / Role
- n8n-nodes-base.webhook - webhook
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
LintGuardian: Automated PR Linting with n8n & AI What It Does LintGuardian is an n8n workflow template that automates code quality enforcement for GitHub repositories. When a pull request is create...
n8n-nodes-base.webhook, @n8n/n8n-nodes-langchain.agent, n8n-nodes-base.respondtowebhook, n8n-nodes-base.httprequest, n8n-nodes-base.converttofile, n8n-nodes-base.extractfromfile, n8n-nodes-base.set, n8n-nodes-base.aggregate
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Adam Bertram.
Original n8n.io sourceLintGuardian is an n8n workflow template that automates code quality enforcement for GitHub repositories. When a pull request is created, the workflow automatically analyzes the changed files, identifies linting issues, fixes them, and submits a new PR with corrections. This eliminates manual code style reviews, reduces back-and-forth comments, and lets your team focus on functionality rather than formatting.
The workflow is triggered by a GitHub webhook when a PR is created. It fetches all changed files from the PR using the GitHub API, processes them through an AI-powered linting service (Google Gemini), and automatically generates fixes. The AI agent then creates a new branch with the corrected files and submits a "linting fixes" PR against the original branch. Developers can review and merge these fixes with a single click, keeping code consistently formatted with minimal effort.
To use this template, you'll need:
gitHubRepoName and gitHubOrgName values to match your repositoryconst commonFields = {
'gitHubRepoName': 'your-repo-name',
'gitHubOrgName': 'your-org-name'
}
.github/workflows/lint-guardian.yml in your repository replacing the Trigger n8n Workflow step with your webhook:name: Lint Guardian
on:
pull_request:
types: [opened, synchronize]
jobs:
trigger-linting:
runs-on: ubuntu-latest
steps:
- name: Trigger n8n Workflow
uses: fjogeleit/http-request-action@v1
with:
url: 'https://your-n8n-instance.com/webhook/1da5a6e1-9453-4a65-bbac-a1fed633f6ad'
method: 'POST'
contentType: 'application/json'
data: |
{
"pull_request_number": ${{ github.event.pull_request.number }},
"repository": "${{ github.repository }}",
"branch": "${{ github.event.pull_request.head.ref }}",
"base_branch": "${{ github.event.pull_request.base.ref }}"
}
preventFailureOnNoResponse: true
When creating your GitHub Personal Access Token, remember to:
As GitHub documentation notes: "Personal access tokens are like passwords, and they share the same inherent security risks."
You can enhance this workflow by:
This template provides an excellent starting point that you can customize to fit your team's exact workflow and code style requirements.
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.
| Workflow | Automate GitHub PR linting with Google Gemini AI and auto-fix PRs |
|---|---|
| Complexity | advanced |
| Nodes | 20 |
| Categories | DevOps, Multimodal AI |
| Author | Adam Bertram |
| Published | 15 May 2025 |
Use the JSON export at /data/workflows/4073/4073.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
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.
LintGuardian: Automated PR Linting with n8n & AI What It Does LintGuardian is an n8n workflow template that automates code quality enforcement for GitHub repositories. When a pull request is create...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
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 DevOps, Multimodal AI use case.