diff options
Diffstat (limited to 'models/repo_watch.go')
-rw-r--r-- | models/repo_watch.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/repo_watch.go b/models/repo_watch.go index 2279dcb115..7d421081a4 100644 --- a/models/repo_watch.go +++ b/models/repo_watch.go @@ -210,7 +210,7 @@ func notifyWatchers(e Engine, act *Action) error { if !act.Repo.checkUnitUser(e, act.UserID, false, UnitTypeIssues) { continue } - case ActionCreatePullRequest, ActionMergePullRequest, ActionClosePullRequest, ActionReopenPullRequest: + case ActionCreatePullRequest, ActionCommentPull, ActionMergePullRequest, ActionClosePullRequest, ActionReopenPullRequest: if !act.Repo.checkUnitUser(e, act.UserID, false, UnitTypePullRequests) { continue } |