1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-12 13:37:20 +00:00

Reset the conflicted files list in testpatch (#18139)

Although #18004 will seriously reduce the likelihood of finding
conflicts in the first place - one bug was introduced whereby the
conflicted files status was not being reset properly. This leads to
conflicted PRs remaining conflicted when the conflict has been resolved.

Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
zeripath
2021-12-31 12:33:55 +00:00
committed by GitHub
parent 7eb380baa4
commit 431e482e3f

View File

@ -235,6 +235,7 @@ func checkConflicts(pr *models.PullRequest, gitRepo *git.Repository, tmpBasePath
}() }()
numberOfConflicts := 0 numberOfConflicts := 0
pr.ConflictedFiles = make([]string, 0, 5)
conflict := false conflict := false
for file := range unmerged { for file := range unmerged {