Create
Create teams from file
Synopsis
Create multiple Teams from a data file (YAML/JSON/CSV).
The data file should contain team definitions with display names, descriptions, owners, and members.
Data file format
YAML example:
engineering:
description: "Engineering team"
owners:
- user.one@example.com
members:
- user.two@example.com
ops:
description: "Operations team"
visibility: "public"
owners:
- user.three@example.com
members: []
JSON example:
{
"engineering": {
"description": "Engineering team",
"owners": ["user.one@example.com"],
"members": ["user.two@example.com"]
},
"ops": {
"description": "Operations team",
"visibility": "public",
"owners": ["user.three@example.com"],
"members": []
}
}
TOML example:
[engineering]
description = "Engineering team"
owners = ["user.one@example.com"]
members = ["user.two@example.com"]
[ops]
description = "Operations team"
visibility = "public"
owners = ["user.three@example.com"]
members = []
Usage
Options
--data string Path to teams data file (YAML/JSON/CSV)
--dry-run Preview without creating teams
-h, --help help for create
Examples
Create teams from YAML file
Create teams from JSON file
Dry run to preview
TUI Preview
