DEV Community

ImmigrationGPT
ImmigrationGPT

Posted on

UK ILR 2026: Eligibility Logic, Continuous Residence Rules, and What HR Systems Need to Track

Indefinite Leave to Remain (ILR) is the UK's permanent settlement status — the point at which a migrant worker's immigration leave ceases to be time-limited. For HR and compliance teams managing sponsored employees, ILR represents both a milestone and a transition: once granted, the worker is no longer subject to immigration control, and the employer's sponsorship obligations end.

This reference covers the qualifying criteria, the continuous residence calculation logic, common failure modes, and the data HR systems need to track as employees approach their qualifying dates.


Core Qualifying Routes in 2026

Route Standard Qualifying Period Notes
Skilled Worker visa 5 years continuous leave Includes time on Tier 2 (General)
Global Talent 3 years (endorsed) Endorsing body confirms eligibility
Spouse / Partner routes 5 years total Includes probationary leave
Long residence 10 years continuous lawful stay Any combination of lawful leave
Innovator Founder 3 years Requires active business + endorsement

The qualifying period is not simply "time since visa grant." It's a calculation of continuous lawful leave in a qualifying category, which means HR systems tracking this need to account for category changes, gaps, and any periods of overstaying.


The 180-Day Absence Rule: What the Calculation Actually Is

The most important rule for HR tracking purposes: applicants must not have spent more than 180 days outside the UK in any 12-month period during the qualifying period.

Key implementation detail: this is a rolling 12-month window, not a calendar-year count.

UKVI checks each possible 12-month window across the full qualifying period. If any single 12-month stretch contains more than 180 days of overseas absence, the qualifying date resets — or the application is refused.

Example calculation logic

def check_absence_compliance(absences: list[tuple[date, date]], qualifying_start: date, qualifying_end: date) -> bool:
    """
    absences: list of (departure_date, return_date) tuples
    Returns True if any 12-month rolling window exceeds 180 days abroad
    """
    current = qualifying_start
    while current <= qualifying_end - timedelta(days=365):
        window_end = current + timedelta(days=365)
        days_abroad = sum(
            (min(ret, window_end) - max(dep, current)).days
            for dep, ret in absences
            if dep < window_end and ret > current
        )
        if days_abroad > 180:
            return False  # Non-compliant window found
        current += timedelta(days=1)
    return True
Enter fullscreen mode Exit fullscreen mode

This kind of rolling-window logic is important for HR platforms that want to surface early warnings before employees breach the 180-day threshold.


Additional Requirements

Beyond continuous residence, applicants must satisfy:

1. Life in the UK Test
24-question multiple-choice test. Pass certificate required. No exemptions for long residence.

2. English Language Requirement
Satisfied by:

  • Degree taught in English (ECCTIS-verified if from outside UK/majority English-speaking country)
  • Approved B1-level English test (Trinity, IELTS for UKVI, etc.)
  • Nationality from a majority English-speaking country (list on GOV.UK)

3. Salary / PBS compliance throughout leave
Applicants should have been paid at or above their Certificate of Sponsorship salary. Unexplained drops below the going rate can trigger scrutiny during the ILR application review.

4. No criminal convictions above threshold
Custodial sentences of 12 months or more result in ILR being refused. Shorter sentences or non-custodial outcomes have different rules depending on length.


What Breaks Continuous Residence

HR systems should flag any of these events as continuity risks:

  • Visa gap: Any period of unlawful residence (visa expired before new grant) breaks continuity unless the applicant applied before leave expired under Section 3C leave provisions.
  • Category switch to non-qualifying route: Switching from Skilled Worker to, say, a Visitor visa breaks the qualifying chain.
  • Absence over threshold: As above.
  • Curtailment of leave: If the sponsor's licence is revoked, or the worker's leave is curtailed for compliance reasons, the continuous residence clock may restart.

Data HR Compliance Systems Should Track

For each sponsored worker approaching a 5-year qualifying date, your HR system should maintain:

{
  "employee_id": "...",
  "visa_history": [
    {
      "category": "Skilled Worker",
      "valid_from": "2021-07-01",
      "valid_to": "2026-07-01",
      "cos_reference": "...",
      "salary_at_cos": 42000
    }
  ],
  "absences": [
    {
      "departure": "2022-08-01",
      "return": "2022-08-21",
      "days_abroad": 20
    }
  ],
  "ilr_qualifying_date": "2026-07-01",
  "rolling_absence_status": "compliant",
  "life_in_uk_passed": true,
  "english_evidence_type": "degree",
  "flag_for_review": false
}
Enter fullscreen mode Exit fullscreen mode

ILR qualifying date alerts should fire at 6 months before the date — giving enough time to resolve any absence compliance issues or document gaps before submission.


Post-ILR: HR and Compliance Transition

Once ILR is granted:

  • Sponsor obligations end. The worker no longer requires a Certificate of Sponsorship. You don't need to report changes in role, salary, or location to UKVI.
  • Right to work is indefinite. The worker's right to work document becomes a Biometric Residence Permit (BRP) or digital proof of settled status — whichever applies. Right to work checks should be updated in your records to reflect the new document type.
  • No further visa extensions to track. Remove the employee from active sponsorship monitoring queues.

For Skilled Worker employees who receive ILR mid-probation, the salary obligation under the CoS also ends — though contractual salary obligations remain.


Useful Resources

The GOV.UK guidance on ILR is split across several routes. For sponsor compliance and worker eligibility tracking, tools like ImmigrationGPT can help HR teams and workers check sponsor register status, query eligibility criteria, and get plain-English summaries of current rules without needing to parse UKVI policy documents directly.


This article is a technical reference for HR and compliance systems. It does not constitute legal advice. Immigration rules change frequently — always verify against current GOV.UK guidance and consult a qualified immigration adviser for case-specific decisions.

Top comments (0)