File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -230,6 +230,7 @@ type Subproject struct {
230
230
Description string `yaml:",omitempty"`
231
231
Contact * Contact `yaml:",omitempty"`
232
232
Owners []string
233
+ Leads []Person `yaml:",omitempty"`
233
234
Meetings []Meeting `yaml:",omitempty"`
234
235
}
235
236
@@ -395,6 +396,9 @@ func (c *Context) Sort() {
395
396
return subproject .Contact .GithubTeams [i ].Name < subproject .Contact .GithubTeams [j ].Name
396
397
})
397
398
}
399
+ sort .Slice (subproject .Leads , func (i , j int ) bool {
400
+ return subproject .Leads [i ].GitHub < subproject .Leads [j ].GitHub
401
+ })
398
402
sort .Strings (subproject .Owners )
399
403
sort .Slice (subproject .Meetings , func (i , j int ) bool {
400
404
return subproject .Meetings [i ].Description < subproject .Meetings [j ].Description
Original file line number Diff line number Diff line change @@ -89,6 +89,12 @@ The following [subprojects][subproject-definition] are owned by sig-{{.Label}}:
89
89
### {{.Name}}
90
90
{{- if .Description }}
91
91
{{ trimSpace .Description }}
92
+ {{- end }}
93
+ {{- if .Leads }}
94
+ - **Leads:**{{ range .Leads }}
95
+ - {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}}
96
+ {{- end }}
97
+
92
98
{{- end }}
93
99
- **Owners:**
94
100
{{- range .Owners }}
You can’t perform that action at this time.
0 commit comments