allow period for the alias #1
Reference in New Issue
Block a user
Delete Branch "alias-period"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
PR Change
@@ -6,3 +6,3 @@const (aliasRegex = `^[a-zA-Z0-9]+$`aliasRegex = `^[a-zA-Z0-9.]+$`Actually this should be previous regex then followed by 1+ dot-prefixed alphanumerics something like
^[a-zA-Z0-9]+(\.[a-zA-Z0.9]+)*$perhaps we can test it too?
foofoo.barfoo.bar.bazand a couple of wrongs like
.foofoo..baretc