pr: make sure issue list is consistent

This commit is contained in:
2025-11-28 12:08:54 +01:00
parent 7a0f651eaf
commit 2be0f808d2

View File

@@ -41,6 +41,9 @@ func PrjGitDescription(prset *common.PRSet) (title string, desc string) {
refs = append(refs, ref)
}
slices.Sort(title_refs)
slices.Sort(refs)
title = "Forwarded PRs: " + strings.Join(title_refs, ", ")
desc = fmt.Sprintf("This is a forwarded pull request by %s\nreferencing the following pull request(s):\n\n", GitAuthor) + strings.Join(refs, "\n") + "\n"