Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ public CreateTeamCommandBase() : base(name: "create-team", description: "Creates

public virtual Option<string> TeamName { get; } = new("--team-name") { IsRequired = true };

public virtual Option<string> IdpGroup { get; } = new("--idp-group");

public virtual Option<string> IdpGroup { get; } = new("--idp-group")
{
Description = "The Identity Provider Group to link the team to. For Enterprise Managed Users only."
};
public virtual Option<string> GithubPat { get; } = new("--github-pat")
{
Description = "Personal access token of the GitHub target. Overrides GH_PAT environment variable."
Expand Down
Loading