Skip to content

ci: only suppress coordinator-review findings from closed issues - #3739

Open
SashaMIT wants to merge 1 commit into
LFDT-Lineth:mainfrom
SashaMIT:fix/review-suppression-open-issues
Open

ci: only suppress coordinator-review findings from closed issues#3739
SashaMIT wants to merge 1 commit into
LFDT-Lineth:mainfrom
SashaMIT:fix/review-suppression-open-issues

Conversation

@SashaMIT

@SashaMIT SashaMIT commented Aug 7, 2026

Copy link
Copy Markdown

Problem

The weekly coordinator security review builds its suppression list by grepping issue bodies with --state all:

gh issue list --label coordinator --label claude-review --state all ... > previous-findings.txt

The prompt then tells the agent to "skip any finding whose primary file:line location appears in that file — do not re-report it even if the issue is still present."

Because open issues are included, every finding the agent reports immediately suppresses itself: the issue is filed (open), its body contains the file:line, and every subsequent weekly review skips that location — even if nobody ever fixes the underlying issue. The review's coverage of live, unaddressed findings decays to zero over time.

Fix

--state closed: suppression now keys on issues a human or process actually closed (resolved / won't-fix / false-positive). Findings in still-open issues are re-reported until someone acts on them — which is the point of a recurring review. The prompt text is updated to match.

Notes

  • No behavior change for closed findings.
  • Line-number drift and free-text keying remain (a fuller design could key suppression on an explicit triage marker + commit SHA); this PR fixes the acute property with a minimal diff.

Made with Cursor

Made with Cursor

The weekly coordinator review builds its skip-list from issue bodies in
--state all, so the moment the agent reports a finding (open issue),
every future review skips that location forever - even while the issue
is unaddressed. Suppression now keys on closed issues only, matching the
prompt's intent (resolved or explicitly declined findings).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant