Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion patterns/archetypes/status-report.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"Use schedule triggers for repeatable reporting",
"Keep prompts focused on one report \u2014 multi-source reports need pre-steps",
"Use DO NOT constraints to prevent repository changes while generating reports",
"Use skip-if-match and expires on create-issue so scheduled reports don't accumulate as duplicate open issues"
"Use skip-if-match and expires on create-issue so scheduled reports don't accumulate as duplicate open issues",
"For recurring reports, prefer close-older-issues: true on create-issue over skip-if-match so each scheduled run always executes and supersedes the previous report instead of being skipped while an old one is still open"
],
"anti_patterns": [
"daily-repo-status",
Expand Down
1 change: 1 addition & 0 deletions scripts/generate-patterns.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ def classify(wf):
"Keep prompts focused on one report — multi-source reports need pre-steps",
"Use DO NOT constraints to prevent repository changes while generating reports",
"Use skip-if-match and expires on create-issue so scheduled reports don't accumulate as duplicate open issues",
"For recurring reports, prefer close-older-issues: true on create-issue over skip-if-match so each scheduled run always executes and supersedes the previous report instead of being skipped while an old one is still open",
],
},
"dependency-monitor": {
Expand Down
Loading