Skip to content

Commit

Permalink
Fix sorting of team mentors
Browse files Browse the repository at this point in the history
Signed-off-by: Jef Spaleta <[email protected]>
  • Loading branch information
jspaleta committed Jan 17, 2025
1 parent 19b1d0a commit 3965d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/sort.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func SortConfig(cfg *Config) {
for teamMentor := range teamMentors {
team.Mentors = append(team.Mentors, teamMentor)
}
sort.Strings(team.Members)
sort.Strings(team.Mentors)

// sort excluded members as well
sort.Slice(team.CodeReviewAssignment.ExcludedMembers, func(i, j int) bool {
Expand Down

0 comments on commit 3965d60

Please sign in to comment.