Run gap analysis bi-weekly (1st and 15th) instead of monthly#144
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Changes the gap-analysis automation cadence from monthly to bi-weekly — it now runs on the 1st and 15th of each month at 04:00 UTC (after the nightly reindex), instead of only the 1st.
0 4 1 * *→0 4 1,15 * *Analysis window unchanged
The 30-day analysis lookback window is unchanged (
GAP_ANALYSIS_DAYS=30). Only the run cadence changed. Each run still analyzes the trailing 30 days; consecutive runs now overlap, which is intentional — the state-artifact new-gap diffing already de-dupes previously-alerted gaps.Label / wording edits (cadence-accuracy only)
Removed now-inaccurate "Monthly" cadence wording from user-facing labels:
.github/workflows/monthly-gap-analysis.ymlname:Monthly Gap Analysis→Gap Analysis(cadence-agnostic)scripts/gap-analysis/monthly-gap-analysis.ts=== Pathfinder Monthly Gap Analysis ===→=== Pathfinder Gap Analysis ===scripts/gap-analysis/README.md# Monthly Gap Analysis→# Gap AnalysisNot touched
monthly-gap-analysis.yml,monthly-gap-analysis.ts, test file) — external tooling references them; the workflow's owngh run list --workflow=monthly-gap-analysis.ymland the weekly-search-report's cross-references still resolve.Verification
git grep "0 4 1 \* \*"→ zero hits (old cron gone)0 4 1,15 * *is a valid 5-field expression (04:00 UTC on day-of-month 1 and 15)--checkclean on touched files,tscbuild clean, full test suite green (3554 passed / 1 skipped)