{{/* Issues Page Content Tier-based dashboard for SDK repos: each tier answers "what should a maintainer do next". SLA cards track SEP-1730 Tier 1 targets. Non-SDK repos (spec, csharp) fall through to the original volume-stat layout. */}} {{ define "iss-type-badge" }} {{- $colors := dict "bug" "#d73a4a" "enhancement" "#a2eeef" "question" "#d876e3" "documentation" "#0075ca" -}} {{- with . -}} {{ . }} {{- end -}} {{ end }} {{ define "iss-priority-badge" }} {{- $colors := dict "P0" "#b60205" "P1" "#d93f0b" "P2" "#fbca04" "P3" "#c5def5" -}} {{- with . -}} {{ . }} {{- end -}} {{ end }} {{ define "iss-row" }}
Time to first maintainer response
Issues with no activity
| Label | Count |
|---|---|
| {{ .label }} | {{ .count }} |
{{ .blurb }}
{{ range .tiers }}| # | Author | Title | Labels | 💬 | 🤖 | Age |
|---|
Sorted by longest wait time first
| Issue | Title | Labels | Comments | Waiting |
|---|---|---|---|---|
| #{{ .number }} | {{ .title }} | {{ $labels := .labels }}{{ $labelCount := len $labels }} {{ if eq $labelCount 0 }}(unlabeled) {{ else }}{{ range first 2 $labels }}{{ . }}{{ end }}{{ if gt $labelCount 2 }}+{{ sub $labelCount 2 }}{{ end }}{{ end }} | {{ if gt .commentCount 0 }}{{ .commentCount }}{{ else }}0{{ end }} | {{ if gt .daysWaiting 30 }}{{ .daysWaiting }}d {{ else if gt .daysWaiting 7 }}{{ .daysWaiting }}d {{ else }}{{ .daysWaiting }}d{{ end }} |