summaryrefslogtreecommitdiff
path: root/generator
diff options
context:
space:
mode:
authorKubernetes Submit Queue <k8s-merge-robot@users.noreply.github.com>2017-10-12 20:06:44 -0700
committerGitHub <noreply@github.com>2017-10-12 20:06:44 -0700
commit6dd32b68ba677ef4a3afb39694e19aaf15a2ab37 (patch)
tree21479b68c0d8f9031860754cb3c4b836da184443 /generator
parent38fef055486c29e0b4d2639560c628f04504de21 (diff)
parent9eb44a1563fecefa543b7be833395a358378010b (diff)
Merge pull request #1173 from yuexiao-wang/add-labels
Automatic merge from submit-queue. add labels in sig list Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn> fix #1172 It's unclear to find out which one is the correct value in sig list when use /sig command. Therefore, I suggest that add labels in list.
Diffstat (limited to 'generator')
-rw-r--r--generator/app.go1
-rw-r--r--generator/list.tmpl6
2 files changed, 4 insertions, 3 deletions
diff --git a/generator/app.go b/generator/app.go
index 0638e1a2..445a3af9 100644
--- a/generator/app.go
+++ b/generator/app.go
@@ -74,6 +74,7 @@ type Group struct {
Name string
Dir string
MissionStatement string `yaml:"mission_statement"`
+ Label string
Leads []Lead
Meetings []Meeting
MeetingURL string `yaml:"meeting_url"`
diff --git a/generator/list.tmpl b/generator/list.tmpl
index f911529e..9a80a8df 100644
--- a/generator/list.tmpl
+++ b/generator/list.tmpl
@@ -13,10 +13,10 @@ When the need arises, a [new SIG can be created](sig-creation-procedure.md)
### Master SIG List
-| Name | Leads | Contact | Meetings |
-|------|-------|---------|----------|
+| Name | Label | Leads | Contact | Meetings |
+|------|--------|-------|---------|----------|
{{- range .Sigs}}
-|[{{.Name}}]({{.Dir}}/README.md)|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* [{{.Day}}s at {{.UTC}} UTC ({{.Frequency}})]({{$save.MeetingURL}})<br>{{end}}
+|[{{.Name}}]({{.Dir}}/README.md)|{{.Label}}|{{range .Leads}}* [{{.Name}}](https://github.com/{{.GitHub}}){{if .Company}}, {{.Company}}{{end}}<br>{{end}}|* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}})<br>* [Mailing List]({{.Contact.MailingList}})|{{ $save := . }}{{range .Meetings}}* [{{.Day}}s at {{.UTC}} UTC ({{.Frequency}})]({{$save.MeetingURL}})<br>{{end}}
{{- end }}
### Master Working Group List