Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
Signed-off-by: Mauro Stettler <[email protected]>
  • Loading branch information
replay committed Apr 25, 2024
1 parent d6dffa4 commit 188e4e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/icassigner/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func (a *Action) Run(ctx context.Context, event *github.IssuesEvent, dryRun bool
}
}

// Log the team member names to consider.
// Log the known team member names.
log.Printf("Known team members: %q", strings.Join(memberNames(teamMembers), ", "))

// 1. get busyness scores per team member
Expand All @@ -76,7 +76,7 @@ func (a *Action) Run(ctx context.Context, event *github.IssuesEvent, dryRun bool
return fmt.Errorf("unable to calculate team busyness, due %w", err)
}

// Log the business report.
// Log the busyness report.
log.Printf("Team members by busyness: %q", busynessPerTeamMember.String())

// 2. Iterate over team members by increasing busyness and check their availability
Expand Down Expand Up @@ -120,7 +120,7 @@ func (a *Action) Run(ctx context.Context, event *github.IssuesEvent, dryRun bool
availableMembers = teamMembers
}

// Log available team members.
// Log the available team members.
log.Printf("Available team members: %q", strings.Join(memberNames(availableMembers), ", "))

// choose a member
Expand Down

0 comments on commit 188e4e2

Please sign in to comment.