Skip to content
Open
Changes from 1 commit
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
4 changes: 3 additions & 1 deletion src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
public virtual Option<string> TeamName { get; } = new("--team-name") { IsRequired = true };

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

{
Description = "The Identity Provider Group to link the team to. For Enterprise Managed Users only."

Check failure on line 21 in src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs

View workflow job for this annotation

GitHub Actions / build (windows-latest)

The name 'Description' does not exist in the current context.

Check failure on line 21 in src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs

View workflow job for this annotation

GitHub Actions / build (macos-latest)

The name 'Description' does not exist in the current context.

Check failure on line 21 in src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The name 'Description' does not exist in the current context.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there is an extra semi colon on line 19 that is a syntax error, once deleted the build should succeed.

};
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