diff --git a/github.go b/github.go index fd050dc..9040d43 100644 --- a/github.go +++ b/github.go @@ -110,7 +110,7 @@ func (p *githubChangeProcessor) prChange(c *change, info pullRequestInfo, pr int if len(c.Title) > 0 && c.Title[0] == '[' { idx := strings.IndexByte(c.Title, ']') if idx > 0 { - c.Title = strings.TrimSpace(c.Title[idx:]) + c.Title = strings.TrimSpace(c.Title[idx+1:]) } }