In fetch_workday_jobs, there is a hardcoded limit = 20 inside the pagination loop. Extract this to a parameter or constant.
Hardcoded limits can silently bottleneck performance if the API supports larger page sizes, or overwhelm the client if it doesn't.
limit = 20 to a constant WORKDAY_PAGE_LIMITpre-commit run --all-files