Skip to content

Commit

Permalink
Merge pull request #368 from eraware/release/1.1.1
Browse files Browse the repository at this point in the history
prevent initial comma in labels list
  • Loading branch information
valadas authored Nov 22, 2021
2 parents 5256a4d + 7f63704 commit 38e2366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class Build : NukeBuild

var groups = pullRequests
.GroupBy(pr =>
pr.Labels.Aggregate("", (a,b) => $"{a}, {b.Name}"),
pr.Labels.Aggregate("", (a,b) => $"{a} {b.Name}"),
(labels, prs) => new { labels, prs });

groups.ForEach(group =>
Expand Down

0 comments on commit 38e2366

Please sign in to comment.