Skip to content

Commit cac2119

Browse files
authored
Merge pull request #25 from ssgelm/allow_underscore_in_usernames
Add `_` as allowed character in usernameRegexp
2 parents 075bbf2 + 1dd48a9 commit cac2119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var ErrNoMatch = errors.New("no match")
4141
var (
4242
emailRegexp = regexp.MustCompile(`\A[A-Z0-9a-z\._%\+\-]+@[A-Za-z0-9\.\-]+\.[A-Za-z]{2,6}\z`)
4343
teamRegexp = regexp.MustCompile(`\A@([a-zA-Z0-9\-]+\/[a-zA-Z0-9_\-]+)\z`)
44-
usernameRegexp = regexp.MustCompile(`\A@([a-zA-Z0-9\-]+)\z`)
44+
usernameRegexp = regexp.MustCompile(`\A@([a-zA-Z0-9\-_]+)\z`)
4545
)
4646

4747
var DefaultOwnerMatchers = []OwnerMatcher{

0 commit comments

Comments
 (0)