Skip to content

Commit 0634ef3

Browse files
mo3etOpenIM-Robot
authored andcommittedNov 22, 2024
build: add bot PR merged filter. (#788)
1 parent ccec00e commit 0634ef3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎tools/changelog/changelog.go

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ func (g *GitHubRepo) classifyReleaseNotes(body string) map[string][]string {
5353
lines := strings.Split(body, "\n")
5454

5555
for _, line := range lines {
56+
// Skip lines that contain "deps: Merge"
57+
if strings.Contains(strings.ToLower(line), "deps: merge #") {
58+
continue
59+
}
60+
5661
// Use a regular expression to extract Full Changelog link and its title (case insensitive).
5762
if strings.Contains(strings.ToLower(line), "**full changelog**") {
5863
matches := regexp.MustCompile(`(?i)\*\*full changelog\*\*: (https://github\.com/[^\s]+/compare/([^\s]+))`).FindStringSubmatch(line)

0 commit comments

Comments
 (0)