Browse Source

dont' send assign webhooks when creating issue (#5365)

tags/v1.21.12.1
Lunny Xiao techknowlogick 7 years ago
parent
commit
499bff43d9
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      models/issue_assignees.go

+ 5
- 4
models/issue_assignees.go View File

@@ -159,12 +159,13 @@ func (issue *Issue) changeAssignee(sess *xorm.Session, doer *User, assigneeID in
return fmt.Errorf("createAssigneeComment: %v", err)
}

// if issue/pull is in the middle of creation - don't call webhook
if isCreate {
return nil
}

mode, _ := accessLevel(sess, doer.ID, issue.Repo)
if issue.IsPull {
// if pull request is in the middle of creation - don't call webhook
if isCreate {
return nil
}
if err = issue.loadPullRequest(sess); err != nil {
return fmt.Errorf("loadPullRequest: %v", err)
}


Loading…
Cancel
Save