Skip to content

Commit

Permalink
Update toml schema for website roles
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 3, 2024
1 parent db224a0 commit 61f79cb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/toml-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ members = [
"rfcbot",
"craterbot",
"rust-timer",
# Any subset of members may hold custom roles, beyond "Team leader" which is
# controlled by the `leads` array above. See [[website.roles]]. Members with
# roles are written using an inline table as follows. A simple string member
# like "bors" is equivalent to {name = "bors", roles = []}.
{ name = "Crab01", roles = ["cohost"] },
{ name = "Crab02", roles = ["cohost"] },
]
# Past members of the team. They will not be considered as part of the team,
# but they will be recognized on the website.
Expand Down Expand Up @@ -140,10 +146,6 @@ weight = -100
id = "cohost"
# Text to appear on the website beneath the team member's name and GitHub handle.
description = "Co-host"
# Subset of the team's members holding this role. A member may hold arbitrarily
# many roles. Each team member's roles will appear comma-separated in the same
# order as roles are listed in the website.roles array.
members = ["Crab01", "Crab03"]

# Define the mailing lists used by the team
# It's optional, and there can be more than one
Expand Down

0 comments on commit 61f79cb

Please sign in to comment.