Skip to content

Commit

Permalink
Fix link to issue assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
flavianmissi authored Apr 19, 2020
1 parent e4bb6ad commit 5307512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prow/plugins/assign/assign.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ type handler struct {
func newAssignHandler(e github.GenericCommentEvent, gc githubClient, log *logrus.Entry) *handler {
org := e.Repo.Owner.Login
addFailureResponse := func(mu github.MissingUsers) string {
return fmt.Sprintf("GitHub didn't allow me to assign the following users: %s.\n\nNote that only [%s members](https://github.com/orgs/%s/people), repo collaborators and people who have commented on this issue/PR can be assigned. Additionally, issues/PRs can only have 10 assignees at the same time.\nFor more information please see [the contributor guide](https://git.k8s.io/community/contributors/guide/#issue-assignment-in-github)", strings.Join(mu.Users, ", "), org, org)
return fmt.Sprintf("GitHub didn't allow me to assign the following users: %s.\n\nNote that only [%s members](https://github.com/orgs/%s/people), repo collaborators and people who have commented on this issue/PR can be assigned. Additionally, issues/PRs can only have 10 assignees at the same time.\nFor more information please see [the contributor guide](https://git.k8s.io/community/contributors/guide/first-contribution.md#issue-assignment-in-github)", strings.Join(mu.Users, ", "), org, org)
}

return &handler{
Expand Down

0 comments on commit 5307512

Please sign in to comment.