-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backport: add reviewers as participants #8124
Backport: add reviewers as participants #8124
Conversation
|
I already set so |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blocked until v1.9.3 released
I guess the build failing is a CI problem? |
I think the swagger/gomod changes that were made to master, may need to be backported first. cc: @sapk |
|
@lunny you can see that swagger command modifies go.mod, which causes make vendor to fail. |
…ue-participants-v1.9
…tea into fix-issue-participants-v1.9
I think this needs #8087 backported. |
@guillep2k backport is done. |
Make LG-TM work |
if !isAdded && !issue.IsPoster(comment.Poster.ID) { | ||
participants = append(participants, comment.Poster) | ||
} | ||
participants = addParticipant(comment.Poster, participants) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The issue Poster should not be added to participants according before logic.
if !issue.IsPoster(comment.Poster.ID) {
participants = addParticipant(comment.Poster, participants)
}
Backport for #8121
This PR add reviewers to the list of participants of an issue.
Currently, only users that add a plain comment (CommentTypeComment) are counted as participants. If a user adds a review/request changes (CommentTypeReview or CommentTypeCode) they are not considered participants.
Fixes #8122