mirror of https://github.com/go-gitea/gitea.git
Backport #32659 by @lunny Fix #27961 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
293355777f
commit
27489f2e0b
|
@ -390,6 +390,12 @@ func (a *actionNotifier) DeleteRef(ctx context.Context, doer *user_model.User, r
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *actionNotifier) SyncPushCommits(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) {
|
func (a *actionNotifier) SyncPushCommits(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) {
|
||||||
|
// ignore pull sync message for pull requests refs
|
||||||
|
// TODO: it's better to have a UI to let users chose
|
||||||
|
if opts.RefFullName.IsPull() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
data, err := json.Marshal(commits)
|
data, err := json.Marshal(commits)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error("json.Marshal: %v", err)
|
log.Error("json.Marshal: %v", err)
|
||||||
|
|
Loading…
Reference in New Issue