From 7d5964174f9893591eb1aff377fa9525604cdfd3 Mon Sep 17 00:00:00 2001 From: peter Date: Wed, 21 Jan 2026 01:42:06 +0100 Subject: [PATCH] Recognise community partnerships as charitable organisations Add "partnership" detection to charity/voluntary check (excluding LLPs). Most UK "X Partnership" organisations are registered charities or CICs, e.g., North Halifax Partnership Limited (charity 1169746). Co-Authored-By: Claude Opus 4.5 --- src/TrueCV.Infrastructure/Jobs/ProcessCVCheckJob.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/TrueCV.Infrastructure/Jobs/ProcessCVCheckJob.cs b/src/TrueCV.Infrastructure/Jobs/ProcessCVCheckJob.cs index 340bba1..a77986e 100644 --- a/src/TrueCV.Infrastructure/Jobs/ProcessCVCheckJob.cs +++ b/src/TrueCV.Infrastructure/Jobs/ProcessCVCheckJob.cs @@ -645,6 +645,14 @@ public sealed class ProcessCVCheckJob return true; } + // Community partnerships (often registered as charities/CICs, e.g., "North Halifax Partnership") + if (name.Contains("partnership") && + !name.Contains("llp") && // Exclude legal LLPs which are commercial + !name.Contains("limited liability")) + { + return true; + } + return false; }