Skip to content

Add property ci_default_git_depth to both Project.cs and ProjectUpdate.cs #872

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 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
3 changes: 3 additions & 0 deletions NGitLab/Models/Project.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,4 +224,7 @@

[JsonPropertyName("mr_default_target_self")]
public bool? MrDefaultTargetSelf { get; set; }

[JsonPropertyName("ci_default_git_depth")]
public bool? CiDefaultGitDepth { get; set; }

Check failure on line 229 in NGitLab/Models/Project.cs

View workflow job for this annotation

GitHub Actions / create_nuget

Symbol 'CiDefaultGitDepth.set' is not part of the declared public API (https://github.com/dotnet/roslyn-analyzers/blob/main/src/PublicApiAnalyzers/PublicApiAnalyzers.Help.md)

Check failure on line 229 in NGitLab/Models/Project.cs

View workflow job for this annotation

GitHub Actions / create_nuget

Symbol 'CiDefaultGitDepth.get' is not part of the declared public API (https://github.com/dotnet/roslyn-analyzers/blob/main/src/PublicApiAnalyzers/PublicApiAnalyzers.Help.md)
}
3 changes: 3 additions & 0 deletions NGitLab/Models/ProjectUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,7 @@

[JsonPropertyName("topics")]
public List<string> Topics { get; set; }

[JsonPropertyName("ci_default_git_depth")]
public bool? CiDefaultGitDepth { get; set; }

Check failure on line 116 in NGitLab/Models/ProjectUpdate.cs

View workflow job for this annotation

GitHub Actions / create_nuget

Symbol 'CiDefaultGitDepth.get' is not part of the declared public API (https://github.com/dotnet/roslyn-analyzers/blob/main/src/PublicApiAnalyzers/PublicApiAnalyzers.Help.md)

Check failure on line 116 in NGitLab/Models/ProjectUpdate.cs

View workflow job for this annotation

GitHub Actions / create_nuget

Symbol 'CiDefaultGitDepth.set' is not part of the declared public API (https://github.com/dotnet/roslyn-analyzers/blob/main/src/PublicApiAnalyzers/PublicApiAnalyzers.Help.md)
}
Loading