Skip to main content

Score resume authenticity with GitHub, LinkedIn, OpenAI and Google Sheets

Workflow preview

Workflow preview
100%
Score resume authenticity with GitHub, LinkedIn, OpenAI and Google Sheets preview
Open on n8n.io

1. Workflow Overview

Quick Overview This workflow accepts resume submissions via webhook or a weekday schedule, extracts verifiable claims from the resume text, cross checks them against GitHub and LinkedIn data, uses ...

Best for

  • HR automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.scheduletrigger, n8n-nodes-base.set, n8n-nodes-base.code, n8n-nodes-base.filter, n8n-nodes-base.httprequest, @n8n/n8n-nodes-langchain.agent

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Oneclick AI Squad.

Original n8n.io source

1.1 Workflow description

Title
Score resume authenticity with GitHub, LinkedIn, OpenAI and Google Sheets
Workflow name
Score resume authenticity with GitHub, LinkedIn, OpenAI and Google Sheets

Quick Overview

This workflow accepts resume submissions via webhook or a weekday schedule, extracts verifiable claims from the resume text, cross-checks them against GitHub and LinkedIn data, uses OpenAI to generate a verification report, calculates an authenticity score, logs results to Google Sheets, and emails a summary via SendGrid.

How it works

  1. Triggers from an inbound webhook request or on a weekday cron schedule for batch verification.
  2. Normalizes incoming candidate data (ID, name, resume text, LinkedIn URL, GitHub username) and loads scoring weights and thresholds.
  3. Parses the resume text with Python to extract employment, education, skills, and certification claims and stops if no claims are found.
  4. Fetches public GitHub profile and repository data from the GitHub API and retrieves a public LinkedIn profile via a RapidAPI endpoint, with a short wait to reduce rate-limit risk.
  5. Aggregates GitHub and LinkedIn evidence and sends the extracted claims plus evidence to OpenAI to produce a structured JSON verification report.
  6. Computes category scores and an overall authenticity score and verdict, then appends the results to Google Sheets, emails a summary via SendGrid, and returns the full report in the webhook response.

Setup

  1. Provide an OpenAI API credential for the LangChain agent node (or replace the model with your preferred provider).
  2. Replace the placeholder tokens/keys for the GitHub API and the RapidAPI LinkedIn endpoint (X-RapidAPI-Key and host) in the HTTP requests.
  3. Configure Google Sheets access by setting your spreadsheet ID and providing a valid Google OAuth access token (or switch to the Google Sheets node with OAuth credentials).
  4. Add your SendGrid API key and update the sender/recipient email addresses used for the verification summary.
  5. If using the webhook trigger, copy the production webhook URL for resume-verify-inbound and configure your ATS/form to POST candidateId, name, resumeText, linkedinUrl, githubUsername, and optional portfolioUrl.

1.2 Logical Blocks

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.

2. Block-by-Block Analysis

Block 1 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Webhook - Resume Submission

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 1.1

Block 7 - Schedule - Daily Batch Verify

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 8 - Prepare Candidate Context

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 9 - Set Scoring Config

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 10 - Python - Extract Resume Claims

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 11 - Filter - Has Valid Claims

Type / Role
n8n-nodes-base.filter - filter
Config choices
Version 2.2

Block 12 - GitHub - Fetch Profile

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 13 - GitHub - Fetch Repositories

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 14 - LinkedIn - Fetch Public Profile

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 15 - JS - Aggregate External Evidence

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 16 - AI - Cross-Reference & Verify Claims

Type / Role
@n8n/n8n-nodes-langchain.agent - agent
Config choices
Version 1.6

Block 17 - JS - Calculate Authenticity Score

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 18 - Update Google Sheet - Verification Log

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 19 - Send Verification Report Email

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 20 - Webhook Response - Return Report

Type / Role
n8n-nodes-base.respondToWebhook - respondToWebhook
Config choices
Version 1.1

Block 21 - OpenAI Chat Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatOpenAi - lmChatOpenAi
Config choices
Version 1.3

Block 22 - Wait - Rate Limit Buffer

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1

3. Summary Table

Workflow Score resume authenticity with GitHub, LinkedIn, OpenAI and Google Sheets
Complexity advanced
Nodes 22
Categories HR, AI Summarization
Author Oneclick AI Squad
Published 10 Jun 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/16229/16229.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

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.

Frequently asked questions

What does Score resume authenticity with GitHub, LinkedIn, OpenAI and Google Sheets do?

Quick Overview This workflow accepts resume submissions via webhook or a weekday schedule, extracts verifiable claims from the resume text, cross checks them against GitHub and LinkedIn data, uses ...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

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 HR, AI Summarization use case.