We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccec00e commit 0634ef3Copy full SHA for 0634ef3
tools/changelog/changelog.go
@@ -53,6 +53,11 @@ func (g *GitHubRepo) classifyReleaseNotes(body string) map[string][]string {
53
lines := strings.Split(body, "\n")
54
55
for _, line := range lines {
56
+ // Skip lines that contain "deps: Merge"
57
+ if strings.Contains(strings.ToLower(line), "deps: merge #") {
58
+ continue
59
+ }
60
+
61
// Use a regular expression to extract Full Changelog link and its title (case insensitive).
62
if strings.Contains(strings.ToLower(line), "**full changelog**") {
63
matches := regexp.MustCompile(`(?i)\*\*full changelog\*\*: (https://github\.com/[^\s]+/compare/([^\s]+))`).FindStringSubmatch(line)
0 commit comments