| 9 | const DAYS_THRESHOLD = 3; |
| 10 | |
| 11 | interface IssueWithTimeline { |
| 12 | number: number; |
| 13 | title: string; |
| 14 | duplicateLabelDate: Date | null; |
| 15 | hasDuplicateLabel: boolean; |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Get the date when duplicate label was added |
nothing calls this directly
no outgoing calls
no test coverage detected