Skip to content

Commit

Permalink
Adding no groups recommendation
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz committed Aug 29, 2023
1 parent fe1899b commit faae7bb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/RepoGovernance.Core/SummaryItemsDA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ public static List<UserOwnerRepo> GetRepos(string user)
{
summaryItem.DependabotRecommendations.Add("Consider adding an open_pull_requests_limit to ensure Dependabot doesn't open too many PR's in the " + item.directory + " project, " + item.package_ecosystem + " ecosystem");
}
if (item.groups == null)
{
summaryItem.DependabotRecommendations.Add("Consider adding groups to consolidate Dependabot PR's in the " + item.directory + " project, " + item.package_ecosystem + " ecosystem");
}
}
if (summaryItem.Actions.Count > 0 && actionsCount == 0)
{
Expand Down

0 comments on commit faae7bb

Please sign in to comment.