diff --git a/src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs b/src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs index cee024b8d..7cc709b88 100644 --- a/src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs +++ b/src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs @@ -16,8 +16,10 @@ public CreateTeamCommandBase() : base(name: "create-team", description: "Creates public virtual Option TeamName { get; } = new("--team-name") { IsRequired = true }; - public virtual Option IdpGroup { get; } = new("--idp-group"); - + public virtual Option IdpGroup { get; } = new("--idp-group") + { + Description = "The Identity Provider Group to link the team to. For Enterprise Managed Users only." + }; public virtual Option GithubPat { get; } = new("--github-pat") { Description = "Personal access token of the GitHub target. Overrides GH_PAT environment variable."