Block 1 - Backfill Trigger
- Type / Role
- n8n-nodes-base.manualTrigger - manualTrigger
- Config choices
- Version 1
Job Application Status Analyser An automated n8n workflow that monitors your Gmail inbox, classifies job application emails using a local AI (Ollama) , and logs every application — with company, ro...
n8n-nodes-base.manualtrigger, n8n-nodes-base.gmail, n8n-nodes-base.gmailtrigger, n8n-nodes-base.function, n8n-nodes-base.if, n8n-nodes-base.httprequest, n8n-nodes-base.googlesheets, n8n-nodes-base.scheduletrigger
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Rishi.
Original n8n.io sourceAn automated n8n workflow that monitors your Gmail inbox, classifies job application emails using a local AI (Ollama), and logs every application — with company, role, and status — to a Google Sheet in real-time.
No cloud AI APIs. No rate limits. Fully local, fully private.
Gmail ➜ Preprocess ➜ Filter Spam ➜ AI Classify (Ollama) ➜ Parse ➜ Merge ➜ Judge ➜ Google Sheets
Email Ingestion — Gmail Trigger polls for new emails every minute from Primary/Updates categories. A manual backfill trigger lets you process the last 150 emails on demand.
Preprocessing — Extracts subject, sender, body text, date, and application links (ATS portals like Greenhouse, Lever, Workday, etc.) from raw email data.
Spam Filter — Drops newsletters, promotional digests, and sale emails via regex before they hit the AI.
AI Classification — Sends each email to a local Ollama instance (Llama 3.1 8B) with a structured prompt. The AI extracts:
applied | rejected | interview | offerunknown:rejected, "interview scheduled" → interview)Override Rules — The word "unfortunately" in any email body forces status to rejected, regardless of AI output.
AI Judging Gate — A second Ollama pass validates each result, filtering out any remaining spam or false positives.
Google Sheets Upsert — Clean data is written to your Google Sheet with columns: company, role, status, Application Link, Last Update Date, Applied Date.
Daily Summary — An hourly scheduled trigger reads the sheet and generates application stats (applied/interview/rejected/offer counts).
git clone <repo-url> && cd job-status-analyser
docker compose up -d
This spins up two containers:
| Service | Port | Purpose |
|---|---|---|
| n8n | localhost:5679 |
Workflow automation engine |
| Ollama | localhost:11434 |
Local LLM inference server |
docker exec -it job-status-analyser-ollama-1 ollama pull llama3.1:8b
http://localhost:5679text.json| Node | Credential Needed |
|---|---|
| Gmail Trigger / Backfill | Gmail OAuth2 |
| Upsert Row in Sheets | Google Sheets OAuth2 |
> Follow the n8n prompts to authorize both accounts.
company | role | status | Application Link | Last Update Date | Applied Date
| Component | Technology |
|---|---|
| Workflow Engine | n8n (self-hosted) |
| AI/LLM | Ollama + Llama 3.1 8B |
| Email Source | Gmail API (OAuth2) |
| Data Store | Google Sheets |
| Infrastructure | Docker Compose |
> Tip: If specific company emails are still misclassified, add keywords to the STATUS_NORM map or BODY_PATTERNS array in the Final Merge Logic node.
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 | Automatic workflow to categorise your job status |
|---|---|
| Complexity | advanced |
| Nodes | 22 |
| Categories | Personal Productivity, AI Summarization |
| Author | Rishi |
| Published | 26 Apr 2026 |
Use the JSON export at /data/workflows/15299/15299.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.
Job Application Status Analyser An automated n8n workflow that monitors your Gmail inbox, classifies job application emails using a local AI (Ollama) , and logs every application — with company, ro...
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 Personal Productivity, AI Summarization use case.