From 1ee73105dd5516d77505592c8658fc384dfb2a1b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 19:41:15 +0000 Subject: [PATCH] Add Heiligabend (Dec 24) as holiday for NRW 2025 and 2026 This fixes the issue where: - December 24 was not recognized as a special day - December 23 was not marked as Vortag (pre-holiday day) By adding Heiligabend to the holiday list: - Dec 24 is now Ist_FEIERTAG=TRUE (treated as WE-Tag) - Dec 23 is now Ist_VORTAG=TRUE (day before holiday, also WE-Tag) Co-authored-by: Kenearos <86194771+Kenearos@users.noreply.github.com> --- src/build_template.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/build_template.py b/src/build_template.py index f9f3cfd..c0856c2 100644 --- a/src/build_template.py +++ b/src/build_template.py @@ -23,6 +23,7 @@ NRW_HOLIDAYS_2025 = [ ("2025-06-19", "Fronleichnam", "NRW"), ("2025-10-03", "Tag der Deutschen Einheit", "NRW"), ("2025-11-01", "Allerheiligen", "NRW"), + ("2025-12-24", "Heiligabend", "NRW"), ("2025-12-25", "1. Weihnachtstag", "NRW"), ("2025-12-26", "2. Weihnachtstag", "NRW"), ] @@ -37,6 +38,7 @@ NRW_HOLIDAYS_2026 = [ ("2026-06-04", "Fronleichnam", "NRW"), ("2026-10-03", "Tag der Deutschen Einheit", "NRW"), ("2026-11-01", "Allerheiligen", "NRW"), + ("2026-12-24", "Heiligabend", "NRW"), ("2026-12-25", "1. Weihnachtstag", "NRW"), ("2026-12-26", "2. Weihnachtstag", "NRW"), ]