Skip to content

Commit

Permalink
internal/contributebot: allow dots in package name (for go.mod) (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
zombiezen authored and shantuo committed Oct 9, 2018
1 parent c6d94fd commit cee0225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/contributebot/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const (
)

var (
issueTitleRegexp = regexp.MustCompile("^[a-z0-9/-]+: .*$")
issueTitleRegexp = regexp.MustCompile(`^[a-z0-9./-]+: .*$`)
pullRequestTitleRegexp = issueTitleRegexp
)

Expand Down

0 comments on commit cee0225

Please sign in to comment.