We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f389995 commit f279565Copy full SHA for f279565
1 file changed
.github/workflows/score_decay_monitor.yml
@@ -256,7 +256,11 @@ jobs:
256
print(f"Veraltend – Warnung (30-44 Tage, Score≥25): {len(stale_warn)}")
257
print(f"Veraltend – Kritisch (45+ Tage, Score≥40): {len(stale_critical)}")
258
print(f"Zombie (Score≥65, 30+ Tage inaktiv): {len(zombie_high)}")
259
- print(f"Läuft bald ab (150+ Tage): {len(decay_suggest)}")
+ # decay_suggest hat bewusst KEINE Score-Schwelle - alle Eintraege mit
260
+ # last_seen >= 150 Tage werden gelistet, weil sie naechste Woche von
261
+ # der combined_blacklist (180-Tage-Cutoff) entfernt werden, unabhaengig
262
+ # vom aktuellen Score. Das ist Cleanup-Hinweis, keine Reklassifizierung.
263
+ print(f"Läuft bald ab (150+ Tage, alle Scores): {len(decay_suggest)}")
264
265
# Decay-Log
266
_log_lines = [
0 commit comments