Skip to content

Commit 094b0f8

Browse files
authored
Merge pull request #1467 from github/brianaj/external-pr-1335
External pr 1335: Add a description to create-team
2 parents eaa57c4 + 572f455 commit 094b0f8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ public CreateTeamCommandBase() : base(name: "create-team", description: "Creates
1616

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

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

0 commit comments

Comments
 (0)