Use chronological commit order in default squash message (#13661) (#13696)

mj-v1.14.3
Jimmy Praet 3 years ago committed by GitHub
parent 57fa9b0f25
commit 03fa2eccbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -556,7 +556,8 @@ func GetCommitMessages(pr *models.PullRequest) string {
authorsMap := map[string]bool{} authorsMap := map[string]bool{}
authors := make([]string, 0, list.Len()) authors := make([]string, 0, list.Len())
stringBuilder := strings.Builder{} stringBuilder := strings.Builder{}
element := list.Front() // commits list is in reverse chronological order
element := list.Back()
for element != nil { for element != nil {
commit := element.Value.(*git.Commit) commit := element.Value.(*git.Commit)
@ -581,7 +582,7 @@ func GetCommitMessages(pr *models.PullRequest) string {
authors = append(authors, authorString) authors = append(authors, authorString)
authorsMap[authorString] = true authorsMap[authorString] = true
} }
element = element.Next() element = element.Prev()
} }
// Consider collecting the remaining authors // Consider collecting the remaining authors

Loading…
Cancel
Save