forked from kubernetes/community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
generator: add support for committees
Since committees can have private mailing lists, this commit also adds a new field for specifying private mailing lists in the "Contacts" section.
- Loading branch information
Showing
6 changed files
with
105 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{{- template "header" }} | ||
# {{.Name}} Committee | ||
|
||
{{ .MissionStatement }} | ||
{{- if .CharterLink }} | ||
The [charter]({{.CharterLink}}) defines the scope and governance of the {{.Name}} Committee. | ||
{{- end }} | ||
{{- if .Meetings }} | ||
|
||
## Meetings | ||
{{- range .Meetings }} | ||
* {{.Description}}: [{{.Day}}s at {{.Time}} {{.TZ}}]({{.URL}}) ({{.Frequency}}). [Convert to your timezone](http://www.thetimezoneconverter.com/?t={{.Time}}&tz={{.TZ | tzUrlEncode}}). | ||
{{- if .ArchiveURL }} | ||
* [Meeting notes and Agenda]({{.ArchiveURL}}). | ||
{{- end }} | ||
{{- if .RecordingsURL }} | ||
* [Meeting recordings]({{.RecordingsURL}}). | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{- end }} | ||
{{- if .Leadership }} | ||
{{- if .Leadership.Chairs }} | ||
|
||
## Members | ||
{{ range .Leadership.Chairs }} | ||
* {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**){{if .Company}}, {{.Company}}{{end}} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
## Contact | ||
|
||
{{- if .Contact.Slack }} | ||
* [Slack](https://kubernetes.slack.com/messages/{{.Contact.Slack}}) | ||
{{- end }} | ||
{{- if .Contact.MailingList }} | ||
* [Mailing list]({{.Contact.MailingList}}) | ||
{{- end }} | ||
{{- if .Contact.PrivateMailingList }} | ||
* Private Mailing List: {{.Contact.PrivateMailingList}} | ||
{{- end }} | ||
{{- if .Label }} | ||
* [Open Community Issues/PRs](https://github.com/kubernetes/community/labels/ug%2F{{.Label}}) | ||
{{- end }} | ||
{{ if .Contact.GithubTeams }} | ||
## GitHub Teams | ||
|
||
The below teams can be mentioned on issues and PRs in order to get attention from the right people. | ||
Note that the links to display team membership will only work if you are a member of the org. | ||
|
||
| Team Name | Details | Description | | ||
| --------- |:-------:| ----------- | | ||
{{- range .Contact.GithubTeams }} | ||
| @kubernetes/{{.Name}} | [link](https://github.com/orgs/kubernetes/teams/{{.Name}}) | {{.Description}} | | ||
{{- end }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters