DEV Community

Work Sponsors
Work Sponsors

Posted on

ILR Processing for HR and Compliance Teams: A Technical Guide to Indefinite Leave to Remain (2026)

If you work in HR, people operations, or build systems that touch employee immigration compliance, understanding Indefinite Leave to Remain (ILR) is essential. ILR is the point at which a foreign national becomes "settled" in the UK — their right to remain is no longer tied to a visa or a sponsor. For employers, this is a critical transition that changes your right-to-work obligations. For developers building HR tech, it's a status you need to model correctly.

What "Settled Status" Actually Means

When a worker holds ILR (or EU Settlement Scheme Settled Status — the ILR equivalent for EU/EEA nationals pre-Brexit), their right to work is indefinite. Under the Right to Work scheme, employers confirm this via the Home Office Share Code system, with no periodic re-check required.

This contrasts with time-limited visas (like the Skilled Worker visa), where employers must track expiry dates and conduct follow-up checks before permission expires.

Eligibility Triggers: The 5-Year Threshold

For most migrant workers in the UK, ILR eligibility triggers after 5 continuous years of lawful residence. Key qualifying routes:

  • Skilled Worker visa → 5 years continuous residence with a licenced employer
  • Global Talent visa → 3 years (top-tier endorsement) or 5 years (standard)
  • Family (Spouse/Partner) visa → 5 years
  • Long Residence → 10 years continuous lawful residence

The 5-year clock starts from the date the first qualifying visa was granted, not the date of entry. This matters when calculating eligibility dates programmatically.

The 180-Day Absence Rule: The Most Common Data Problem

The single biggest source of ILR refusals — and the most interesting data modelling challenge — is the 180-day absence rule. Applicants must not have spent more than 180 days outside the UK in any rolling 12-month period during their qualifying residence.

"Any 12-month period" does not mean calendar years. The Home Office can take any consecutive 365-day window and count absences within it. This means:

  • Simple year-by-year absence summaries are not sufficient
  • You need a sliding window calculation across the full 5-year qualifying period
  • Edge cases around partial travel days require careful date arithmetic

For HR tech builders: the absence calculation is the most complex piece. A naive implementation that only sums by calendar year produces false negatives — workers who appear compliant but aren't.

Right-to-Work Check Logic

From a compliance system perspective, employees sit in three states:

  1. Time-limited permission — expiry date tracked, re-check required before expiry
  2. ILR / Settled Status — indefinite, one-time verification, no re-check needed
  3. British/Irish citizen — no check required once confirmed

A well-designed system flags workers approaching ILR eligibility (e.g., within 6 months of their 5-year qualifying date) so HR can prompt them to apply. A worker whose visa expires before they apply for ILR creates a gap in lawful residence — which can invalidate their entire qualifying period.

What HR Needs to Provide for Applications

When a Skilled Worker applies for ILR, they typically need an employer letter confirming:

  • Current role and salary
  • Continuous employment throughout the qualifying period
  • Any changes to job title, salary, or terms
  • Confirmation the role remains within the same Standard Occupational Classification code

HR teams should maintain clean records of employment start dates, pay changes, and any periods of authorised unpaid leave. Gaps in payroll records frequently stall applications.

The Compliance Handover Point

Once a worker achieves ILR, your obligations as a sponsoring employer end. They can change employer freely, work in any role, and travel without restriction. Remove them from your active sponsored worker tracking — but document and retain their right-to-work confirmation.

Tools That Help

AI-powered tools are increasingly filling the gap between expensive legal counsel and manual spreadsheet tracking. ImmigrationGPT is purpose-built for the UK context — helping HR professionals understand where an employee stands in their ILR journey and what documentation they need to prepare.

Getting ILR logic right is non-negotiable. The cost of a mis-tracked worker — refusal or an illegal working violation — far outweighs the cost of a robust compliance system.


This post is for informational purposes only and does not constitute legal advice. Always verify against the latest UKVI guidance and consult a qualified professional for specific cases.

Top comments (0)