mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Replace #25741
Close #24445
Close #30658
Close #20646
~Depends on #30805~
Since #25741 has been rewritten totally, to make the contribution
easier, I will continue the work in this PR. Thanks @6543
---------
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
(cherry picked from commit c6cf96d31d80ab79d370a6192fd761b4443daec2)
Conflicts:
	tests/integration/editor_test.go
	trivial context conflict because of 75ce1e2ac1 [GITEA] Allow user to select email for file operations in Web UI
	tests/integration/pull_merge_test.go
	trivial context conflicts in imports because more tests were added in Forgejo
		
	
			
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package automerge
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	issues_model "code.gitea.io/gitea/models/issues"
 | 
						|
	user_model "code.gitea.io/gitea/models/user"
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
	notify_service "code.gitea.io/gitea/services/notify"
 | 
						|
)
 | 
						|
 | 
						|
type automergeNotifier struct {
 | 
						|
	notify_service.NullNotifier
 | 
						|
}
 | 
						|
 | 
						|
var _ notify_service.Notifier = &automergeNotifier{}
 | 
						|
 | 
						|
// NewNotifier create a new automergeNotifier notifier
 | 
						|
func NewNotifier() notify_service.Notifier {
 | 
						|
	return &automergeNotifier{}
 | 
						|
}
 | 
						|
 | 
						|
func (n *automergeNotifier) PullRequestReview(ctx context.Context, pr *issues_model.PullRequest, review *issues_model.Review, comment *issues_model.Comment, mentions []*user_model.User) {
 | 
						|
	// as a missing / blocking reviews could have blocked a pending automerge let's recheck
 | 
						|
	if review.Type == issues_model.ReviewTypeApprove {
 | 
						|
		if err := StartPRCheckAndAutoMergeBySHA(ctx, review.CommitID, pr.BaseRepo); err != nil {
 | 
						|
			log.Error("StartPullRequestAutoMergeCheckBySHA: %v", err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (n *automergeNotifier) PullReviewDismiss(ctx context.Context, doer *user_model.User, review *issues_model.Review, comment *issues_model.Comment) {
 | 
						|
	if err := review.LoadIssue(ctx); err != nil {
 | 
						|
		log.Error("LoadIssue: %v", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	if err := review.Issue.LoadPullRequest(ctx); err != nil {
 | 
						|
		log.Error("LoadPullRequest: %v", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	// as reviews could have blocked a pending automerge let's recheck
 | 
						|
	StartPRCheckAndAutoMerge(ctx, review.Issue.PullRequest)
 | 
						|
}
 |