Problem
The filter-files workflow fails on all PRs with 2026-dated posts because bin/filterpaths.py hardcodes the year in the slug template:
SLUG_TEMPLATE = "2025-\d\d-\d\d-.+"
This rejects any post file named 2026-*, such as 2026-02-10-evaluation.md.
Affected PRs
Suggested fix
Replace the hardcoded year with a wildcard:
SLUG_TEMPLATE = "\d{4}-\d\d-\d\d-.+"
Problem
The
filter-filesworkflow fails on all PRs with 2026-dated posts becausebin/filterpaths.pyhardcodes the year in the slug template:This rejects any post file named
2026-*, such as2026-02-10-evaluation.md.Affected PRs
Suggested fix
Replace the hardcoded year with a wildcard: