Skip to content

Commit

Permalink
Adds link about assign limitations to bot response text
Browse files Browse the repository at this point in the history
  • Loading branch information
guineveresaenger committed Jul 18, 2018
1 parent 8797575 commit 63743a7
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 @@ -188,7 +188,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) and repo collaborators can be assigned.", 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) and repo collaborators can be assigned. \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 &handler{
Expand Down

0 comments on commit 63743a7

Please sign in to comment.