diff options
| author | Katharine Berry <ktbry@google.com> | 2021-04-01 00:51:14 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-01 00:51:14 -0700 |
| commit | 89c86be31d1dadf4b01dee3b2e471cc2b0964547 (patch) | |
| tree | db75f2d68803616ad12578b93e697d4225408a50 /communication | |
| parent | 189a733a744202d90ffd6301e670636f9249af17 (diff) | |
Fix descriptions in sig-release usergroups.
Slack has a 140-character max for descriptions, and they can't contain
newlines. Tempelis doesn't understand either of these rules, so it is
confused: it is repeatedly trying to add in the newlines that Slack is
stripping out, and it cannot correctly create security-release-team because
the description is too long. Fix both of these things.
Diffstat (limited to 'communication')
| -rw-r--r-- | communication/slack-config/sig-release/usergroups.yaml | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/communication/slack-config/sig-release/usergroups.yaml b/communication/slack-config/sig-release/usergroups.yaml index 0c776f05..9a3a931a 100644 --- a/communication/slack-config/sig-release/usergroups.yaml +++ b/communication/slack-config/sig-release/usergroups.yaml @@ -6,7 +6,7 @@ usergroups: # - https://git.k8s.io/sig-release/release-managers.md#associates - name: release-managers long_name: Release Managers - description: |- + description: >- Release Managers. Ping for questions on branch cuts and building/packaging Kubernetes. channels: @@ -34,7 +34,7 @@ usergroups: # Current release cycle: https://git.k8s.io/sig-release/releases/release-1.20/release_team.md - name: release-team-leads long_name: Release Team Leads - description: |- + description: >- Release Team Leads. Ping for questions on the current Kubernetes release cycle. channels: @@ -61,7 +61,7 @@ usergroups: # https://git.k8s.io/community/sig-release/README.md#leadership - name: sig-release-leads long_name: SIG Release Leads - description: |- + description: >- SIG Release Leads. Ping for questions on SIG Release process and escalations. channels: - release-ci-signal @@ -80,10 +80,9 @@ usergroups: # - https://git.k8s.io/sig-release/release-managers.md#release-managers - name: security-release-team long_name: Security Release Team - description: |- - Security Release Team is the composite of full-fledged Product Security - Committee members and Release Managers. Ping for questions on Kubernetes - security releases. + description: >- + Composite of Product Security Committee members and Release Managers. Ping + for questions on Kubernetes security releases. channels: - release-management - sig-release |
